Thanks sharkbait it was the http header setting that enabled this to work.
Now I have another problem it’s this step:
6/ now you should create modx documents / template for newsletters and subscription pages, something like following :
+ newsletters (directory)
| + newsletter 1 (page) // with a newsletter template
| + newsletter 2 (page) // with a newsletter template
+ newsletter subscription (page) // with subscribe template
=> newsletter template should have "{link_unsubscribe}" added in an link, something like this : "<a href="{link_unsubscribe}">click here for unsubcribe</a>"
the tag "{link_unsubscribe}" will be replaced with an encoded unsubscribe link by the module before sending
=> subscribe template page should have this snippet call "" to generate subscribe form
if you choose to have a different page for unsubscribe, the template page should have this snippet call ""
I create a directory called: newsletters (id=18), then sub-directories called: Newsletter Template (id=20), and Subscribe (id=19).
In the newsletter directory I have this: [[TXNewsletters]]
In the Newsletter Template (subdirectory) I have this: "<a href="{link_unsubscribe}">click here for unsubcribe</a>"
[[TXNewsletters]]
In the subscribe page I have this: ""
Now in my module configuration I have these settings:
Sending email: MyEMAIL@ADDRESS
Newsletter Directory: 20
Item per page: 15
Page Subscribe: 19
Page Unsubscribe: 19
When I preview any of the template pages, there are no forms showing. The only thing that shows is the unsubscribe link in the Newsletter Template Page.
Where do I get these template or get them to show? I did not add any css styles to my stylesheet yet.