Skip to main content
Level 4
October 15, 2020
質問

unsubscribe header

  • October 15, 2020
  • 4 の返信
  • 2656 ビュー

How can i include a header in emails?

 

Is there any way to bulk update the templates in email to incorporate the headers for any future emails that are sent out. 

このトピックへの返信は締め切られました。

4 の返信

DavidKangni
Community Advisor
Community Advisor
October 15, 2020

Hi,

Add this to smtp header

Precedence: bulk

List-Unsubscribe: <mailto:<%= provider.errorAddress !='' ? provider.errorAddress:delivery.mailParameters.errorAddress %>?subject=unsubscribe<%=escape(message.mimeMessageId) %>>

 

For bulk upload, you can try to do it in a JS. Moving forward you can add a typology rules to add it automatically to all deliveries.

 

Thanks,

David

David Kangni
Ramaswami作成者
Level 4
October 16, 2020

so basically here is where we need to update the headers in email templates- but my question is how to update them in bulk ? and how to do that in typology rules. can you give us an example.