Skip to Content.
Sympa Menu

Message personalization

How it works

(Work in progress)

List of template variables

Following TT2 template variables in the message body and/or message footer/header will be extracted.

Obsoleted template variables

These variables were obsoleted.

Examples

This is an example of an application of message personalization feature.

Add a file named message_footer to the list directory with following content:

Click here to unsubscribe: [% 'auto_signoff' | url_abs([listname],{email=>user.email}) %]

And set these list parameters:

Then, each time a message is sent to the list, this file will be converted and allow to display the following text at the bottom of each message:

Click here to unsubscribe: https://web.example.org/sympa/auto_signoff/mylist?email=bob.mcbob%40domain.tld

Note

  • On Sympa earlier than 6.2.60:

    • personalization_feature parameter was named "merge_feature".
    • personalization.mail_apply_on was not required (not implemented).
  • On Sympa earlier than 6.2.42:

  • The line above is an example for Sympa 6.2 later than Aug 2016. With earlier versions it should be:

    Click here to unsubscribe: [% wwsympa_url %]/auto_signoff/[% listname %]/[% user.escaped_email %]
    
Top of Page