Hi,
I need to add List-Unsubscribe in email header.
Dose OpenEMM have this function ? ( not insert link in email )
Thanks and Regards.
How can i add List-Unsubscribe Header ?
Moderator: moderator
Re: How can i add List-Unsubscribe Header ?
I hope the next version of OpenEMM will have this function.maschoff wrote:Not yet.
Thank for your support.
Re: How can i add List-Unsubscribe Header ?
Hi,
I am using OpenEMM 2013 and it generates a List-Unsubscribe header but isn't it possible to change the value?
It sends the mails with:
This is not very usefull.
Kind regards,
shi
I am using OpenEMM 2013 and it generates a List-Unsubscribe header but isn't it possible to change the value?
It sends the mails with:
Code: Select all
List-Unsubscribe: http://localhost/unsubscribe.html?<E-Mail-Address>
Kind regards,
shi
-
- Site Admin
- Posts: 2628
- Joined: Thu Aug 03, 2006 10:20 am
- Location: Munich, Germany
- Contact:
Re: How can i add List-Unsubscribe Header ?
This header line is only written if OpenEMM uses its internal MTA instead of Sendmail. The header line is implemented by plugin listUnsubscribeHeader.py. You can define its content in file /home/openemm/conf/semu/semu.cfg:
Placeholder %(urlrecv)s specifies the URL encoded receiver email address. You may also use %(recv)s (receiver email address), %(sender)s (sender email adress) and %(urlsender)s (URL encoded sender email address).
Code: Select all
[listUnsubscribeHeader]
uri: http://localhost/unsubscribe.html?%(urlrecv)s
OpenEMM Maintainer