Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

List-Unsubscribe


List-Unsubscribe(link takes you to an external page) is a small piece of text that can be inserted in the header section of your email. The List-Unsubscribe header will insert an "unsubscribe" button, or link, next to the From address at the top of your email. A recipient can click this link to notify you that they would like to unsubscribe from your emails.


_10
{
_10
"List-Unsubscribe-Post": "List-Unsubscribe=One-Click",
_10
"List-Unsubscribe": "<mailto:unsubscribeexampexample@example.com>, <https://www.unsubscribe.example.com/>"
_10
}

List-Unsubscribe Email Example.
(error)

Danger

It is important to note that the list-unsubscribe header is not a complete replacement for the standard unsubscribe functionality that should be included in the body of your email. For more information on adding unsubscribe links to the body of your email, see our Unsubscribe Groups documentation.


SendGrid's Subscription Tracking

sendgrids-subscription-tracking page anchor

If you enable SendGrid's subscription tracking(link takes you to an external page) feature, SendGrid will automatically insert the List-Unsubscribe header in all of your text and HTML emails— placing an HTTPS unsubscribe link in all of your emails. Additionally, SendGrid will insert a List-Unsubscribe-Post header with List-Unsubscribe=One-Click.

You can also place the substitution tag [unsubscribe] anywhere in the body of your email to specify the exact location where you want the unsubscribe link to appear. You may customize this tag and the message inserted during the substitution. For more information, see our subscription tracking documentation.

It is possible to use the List-Unsubscribe header even if you do not want to use subscription tracking. This is useful for users who want to provide their recipients an easy way to unsubscribe from their emails without relying on SendGrid's tracking features. Continue reading below for an explanation of the both headers, and how you can use it when sending email via SendGrid.


How does the List-Unsubscribe header work?

how-does-the-list-unsubscribe-header-work page anchor

The List-Unsubscribe header provides two methods of unsubscribing users: an email unsubscribe, and a web unsubscribe. Both of these methods should be used to comply with various inbox providers.


Web Unsubscribe: https

web-unsubscribe-https page anchor

The https portion of the List-Unsubscribe header allows you to specify a URL that will receive a POST whenever someone clicks the unsubscribe link in your email. Inboxes such as Gmail and Yahoo! require a valid https unsubscribe link in the headers of marketing emails.


Email Unsubscribe: mailto

email-unsubscribe-mailto page anchor

The mailto portion of the List-Unsubscribe header allows you to specify an email address that will receive the unsubscribe request. In other words, when a recipient clicks the "unsubscribe" link in your email, the recipient's mail client will send an email to this address.

It is your responsibility to receive and process these generated emails.

(error)

Danger

Failure to honor your recipients' unsubscribe requests may do more than damage your sender reputation. To learn more about deliverability and compliance, see our 2019 Email Deliverability Guide(link takes you to an external page).


How does the List-Unsubscribe-Post header work?

how-does-the-list-unsubscribe-post-header-work page anchor

Inboxes such as Gmail and Yahoo! require all marketing email to contain a List-Unsubscribe-Post header with the value List-Unsubscribe=One-Click. This header communicates that the unsubscribe method is one click via a POST request. Additionally, anti spam software may issue GET requests to links in emails. To prevent accidental unsubscribes, add an additional step so that the GET request to that link does not unsubscribe someone. As an example, you could make the GET request to the link present a landing page to the user containing a link or button to confirm the unsubscribe. A POST request to this link, such as that generated through the one click unsubscribe in the email header, should result in an unsubscribe.

(warning)

Warning

When testing the implementation of one-click unsubscribe, developers may not see a one click unsubscribe button even if it has been implemented correctly. Inbox providers are the ultimate deciders of which emails will display a one click unsubscribe button next to the From address of the email. Low sender reputations can occasionally cause the one click unsubscribe button to not be displayed.


Which method should I use?

which-method-should-i-use page anchor

You must include both the mailto and https portions of the List-Unsubscribe header, since different inboxes either only support mailto (iOS, for example) or require https (Gmail and Yahoo!).

Not honoring your recipients' unsubscribe requests could not only harm your sender reputation, but could also violate legislation laid out in CAN-SPAM, CASL(link takes you to an external page), and other legislation. For more information about deliverability best practices and compliance, please visit our Deliverability Overview.



Using List-Unsubscribe with v3 Mail Send

using-list-unsubscribe-with-v3-mail-send page anchor

_25
{
_25
"personalizations": [
_25
{
_25
"to": [
_25
{
_25
"email": "example@example.com"
_25
}
_25
],
_25
"subject": "Your subject line here"
_25
}
_25
],
_25
"from": {
_25
"email": "example@example.com"
_25
},
_25
"content": [
_25
{
_25
"type": "text/plain",
_25
"value": "Hello, World!"
_25
}
_25
],
_25
"headers": {
_25
"List-Unsubscribe-Post": "List-Unsubscribe=One-Click",
_25
"List-Unsubscribe": "<mailto:unsubscribeexampexample@example.com>, <https://www.unsubscribe.example.com>"
_25
}
_25
}


Using List-Unsubscribe with v2 Mail Send

using-list-unsubscribe-with-v2-mail-send page anchor

_10
api_user=your_sendgrid_username&
_10
api_key=your_sendgrid_password&
_10
to=destination@example.com&
_10
toname=Destination&
_10
subject=Example_Subject&
_10
text=testingtextbody&
_10
from=info@domain.com&
_10
"headers": {"List-Unsubscribe-Post": "List-Unsubscribe=One-Click", "List-Unsubscribe": "<mailto:unsubscribeexampexample@example.com>, <https://www.unsubscribe.example.com>"}


List-Unsubscribe with SMTP

list-unsubscribe-with-smtp page anchor

_10
{
_10
"List-Unsubscribe-Post": "List-Unsubscribe=One-Click",
_10
"List-Unsubscribe": "<mailto:unsubscribeexampexample@example.com>, <https://www.unsubscribe.example.com/>"
_10
}


Rate this page: