Senders
US, Canadian, and EU regulations require specifying a sender for email messages. This identifies where each email message you send originates.
Before you can edit or use your sender identity email address to schedule a Single Send or set an Automation, you must verify that email address. If you have an authenticated domain and your sender email address matches that domain exactly, Twilio verifies your sender identity.
Accurate and trustworthy sender metadata ensure the success of your campaigns and maintaining a positive sender reputation. To build trust with your recipients and the intermediate checkpoints like spam filters and ISPs, complete the following tasks as you add senders:
- Configure your
Fromname and email address for your sender. - Validate that your sender metadata complies with local, regional, and national email regulations in both the sender's and recipient's locations.
- Set up your company's address and contact details for transparency and trustworthiness.
You may create up to 100 unique senders.
To add a Sender:
-
Log in to the Twilio SendGrid console.
-
Go to Marketing > Senders. The Sender Management page appears.
-
Click Create New Sender. The Add a Sender panel appears.
-
Complete the fields in the panel.
Field Expected value From name The name of the person or organization you want to send the email message. From email The email address of the person or organization you want to send the email message. Reply to email The email address of the person, organization, or role to which you want replies sent. Company address The physical location of the organization on whose behalf you're sending email messages. This includes the Company Address Line 2, City, State, Zip Code, and Country fields. Nickname A human-readable label that identifies this sender for your reference. Twilio doesn't display this field to recipients. -
Click Save.
-
Check the inbox of the email address that you entered.
-
To verify the Sender email, click the link in the email.
-
If you need to resend the verification email, click the ⋮ menu then Resend Verification.
Once you schedule a Single Send or set an Automation, you can't delete the sender identity associated with that Single Send or Automation.
The Twilio SendGrid pre-built email templates come with an Unsubscribe module that contains your Sender metadata.
For templates or emails that you build, use the following tags insert your sender identity metadata into your campaign or template content:
| Tag | Content |
|---|---|
{{Sender_Name}} | The name that represents the sending organization. |
{{Sender_Address}} | The physical street address where the sending organization operates. |
{{Sender_City}} | The city of the physical street address where the sending organization operates. |
{{Sender_State}} | The state or region of the physical street address where the sending organization operates. |
{{Sender_Zip}} | The postal code of the physical street address where the sending organization operates. |
{{Sender_Country}} | The country of the physical street address where the sending organization operates. |
To add tags to your email:
- Click the Build tab.
- Drag a Text module into your campaign body.
- Navigate to the Tags tab.
- Select the copy icon next to the tag you want to add to your campaign.
- Paste the tag into your text module.
Example of adding your company name and address to your email
To show your company name and full address in the footer of your email, Twilio SendGrid recommends adding the following custom field tags:
1<div>{{Sender_Name}}</div>2<div>{{Sender_Address}}</div>3<div>{{Sender_City}}, {{Sender_State} {{Sender_Zip}}</div>4<div><%asm_group_unsubscribe_url%> | <%asm_preferences_url%></div>
When you add these tags correctly, they should render as HTML as follows:
1<div>Twilio</div>2<div>101 Spear St, 5th Fl</div>3<div>San Francisco, CA 94105</div>4<div>Unsubscribe from this list | Manage Email Preferences</div>