In my newsletter templates I can set the Subject by setting $theme_subject = 'My Newsletter Subject';
How can I set a specific list preference to be pre-selected when I choose a specific theme template?
I think I want list_1=1, but am unsure of the correct syntax to use in the theme template to do this.
Is this possible?
If so could you show example code please?
OK. I think I have worked out one way (possibly not the best way) of doing this.
In the theme.php file of my template I added the code $email['preferences'] = '2';
to preselect my subscribers list preference number 2, or $email['preferences'] = '1,2';
to preselect my subscribers list preference number 1 and 2.
Awesome. Thanks Stefano.