I am using ElasticEmail to send emails from ThirtyBees. I specify that the emails sent by ThirtyBees are transactional emails. This way, people who have unsubscribed my emails (marketing/newsletter emails) still receive transactional emails (order confirmation, etc.). This is done by adding a header to the emails, IsTransactional: True.
More info: https://help.elasticemail.com/en/articles/2419281-what-is-the-difference-between-marketing-and-transactional-email
I pass this header when sending emails from ThirtyBees.
Up to TB 1.4
I took Mail.php class, added this line and placed the edited Mail.php class in /override/classes/Mail.php
Question
romaric17
Hello
I am using ElasticEmail to send emails from ThirtyBees. I specify that the emails sent by ThirtyBees are transactional emails. This way, people who have unsubscribed my emails (marketing/newsletter emails) still receive transactional emails (order confirmation, etc.). This is done by adding a header to the emails, IsTransactional: True.
More info: https://help.elasticemail.com/en/articles/2419281-what-is-the-difference-between-marketing-and-transactional-email
I pass this header when sending emails from ThirtyBees.
Up to TB 1.4
I took Mail.php class, added this line and placed the edited Mail.php class in /override/classes/Mail.php
With TB 1.5
Things are changing. Mail.php class now uses MailTransport and an associated module. Here is how I have achieved passing IsTransactional: True header.
1/ In TB admin, install and activate the module: Mail via swiftmailer
2/ Configure the module to use PHP's mail() function
3/ Edit /modules/tbswiftmailer/src/SwiftMailerTransport.php by adding the last line here:
And now all emails sent by ThirtyBees will have the IsTransactional: True header.
Edited by romaric170 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now