Dynamic Address per Contact
Overview
When a Campaign is sent, the From, Reply to, and Bounce Addresses are the same for each contact. Custom Fields can be used in the List Properties to change the addresses on a per Contact basis. Following are the steps to accomplish that.
Create Custom Fields for the dynamic values
Two Custom Fields will be created for this example, but existing Custom Fields may also be used.
Go to Contacts > Custom Fields
Click ADD
Enter a Field Name for the value to be used as the decorative From (e.g. rep_name)
Set the Type to Text.
Enter a Description
Click SAVE.
Click ADD again.
Enter a Field Name for the value to be used as the From email address (e.g. rep_email)
Set the Type to Text.
Enter a Description.
Click SAVE.
Create Article to pull Custom Field values
Without a properly formatted From address, the message intended for a particular Contact will fail. Therefore, it is important to include a fall back for each of these dynamic values. Due to character limit constraints on List Addressing fields, Articles are required for this necessary logic.
Go to Content > Articles
Click ADD ARTICLE
Enter a Name (e.g. from_decorative)
Click the 'Plain Text and HTML editing with our text editor' radio button, then SAVE
In the Body, enter logic using the decorative custom field created above, and the fallback Decorative value:
%%if rep_name != "" then printdata rep_name else print "Your Rep"%%
Click SAVE
Go to Content > Articles
Click ADD ARTICLE again
Enter a Name (e.g. from_email)
Click the 'Plain Text and HTML editing with our text editor' radio button, then SAVE
In the Body, enter logic using the email custom field created above, and the fallback email address:
%%if rep_email != "" then printdata rep_email else print "rep@mycompany.com"%%
Click SAVE
Create List
Go to Lists > Lists
Click ADD LIST
Give the List a Name and click SAVE
In the From Address field enter:
"%%article from_decorative%%" <%%article from_email%%>
Make other selections and enter other values as necessary.
Click SAVE
Test
Make sure to import a few Contacts with various values (or no values) in these fields to ensure that all is working as expected.
NOTE: Campaigns using custom or fillin fields in the From Address do not support FTAF at this time, as FTAF requires a specifically defined From Address to send a message.