Index > Announcements > Personalized newsletter
As from version 2.6.1, you will be able to send personalized newsletters to members. Due to data security regulations, storing more than the e-mail address when subscribing to a channel will still not be supported. Personalized newsletters can only be sent to registered members.
When the newsletter is sent, the module checks for a matching e-mail address in tl_member and loads the firstname and lastname if so. You can use the following code in your text and HTML content:
This seems like a good compromise between sending personalized mails and obeying privacy rules. In addition, I am fulfilling the promise I gave to Janis, who arranged that TYPOlight is permanently listed at wikipedia. Thanks a lot for your help again.
P.S.: If you want to know when version 2.6.1 is being released, take a look at the roadmap
When the newsletter is sent, the module checks for a matching e-mail address in tl_member and loads the firstname and lastname if so. You can use the following code in your text and HTML content:
Code:
{if:male}Dear Mr. ##firstname## ##lastname##,{/if} {if:female}Dear Mrs. ##firstname## ##lastname##,{/if} {else}Dear Customer,{/if} rest of the message...
This seems like a good compromise between sending personalized mails and obeying privacy rules. In addition, I am fulfilling the promise I gave to Janis, who arranged that TYPOlight is permanently listed at wikipedia. Thanks a lot for your help again.
P.S.: If you want to know when version 2.6.1 is being released, take a look at the roadmap
2008-09-18 23:26
very good function
Thanks Leo
Paolo B.
TYPOlightcms.it - Sito di riferimento per la comunità italiana
TYPOlightcms.it - Sito di riferimento per la comunità italiana
2008-09-18 23:35
Since I have received a lot of additional feature wishes, I decided to implement a more complex parser that allows you to select any tl_member field and use it in an if/else block:
Code:
{if gender=="male"} Dear Mr. ##lastname##, {elseif gender=="female"} Dear Mrs. ##lastname##, {else} Dear customer, {endif} this is the message. {if phone==""} Please update your personal data and enter a phone number. {endif} Kind regards
2008-09-19 14:30
Thats pretty nice in the inbox!! - but also pretty not nice in the frontend newsletter reader 
2008-12-07 02:48
