Yes, it is. However, instead of using the default {%UnsubscribeLink%} macro expression, we need to compose it manually, according to this example:
<a href="http://domain/cmsmodules/newsletters/cmspages/unsubscribe.aspx?subscriberguid={%SubscriberGUID%}&newsletterguid={%NewsletterGUID%}&issueguid={%IssueGUID%}&contactid={%ContactID%}?query=value&query2=value">Unsubscribe</a>
You may see the link is composed of several parts. Leaving it like this has the same result as the original macro expression. However you can add any number of custom query parameters at the end of the link and provide any additional info about the subscriber. This can be optionally processed in the code-behind of the cmsmodules/newsletters/cmspages/unsubscribe.aspx page.
-rm-
This error indicates that you have configured your server settings from Site Manager -> Administration -> SMTP Servers. This setting is for configuring multiple SMTP servers within a single site, and is a feature only available with the EMS license. Instead, configure your server setting from Site Manager -> Settings -> System -> E-mails.
-ag-
Please make sure you have 'Read' permission for newsletters module set for 'Everyone' in 'CMSDesk -> Administration -> Permission matrix' section.
If you use version 4.0 you will also need to correct typing error in web.config file. We are very sorry for this inconvenience. Could you please change following line in ~\CMSModules\web.config file from:
<location path="Newsletter/CMSPages/GetNewsletterIssue.aspx">
to:
<location path="Newsletters/CMSPages/GetNewsletterIssue.aspx">
You will need to change following lines in the same way as well:
<location path="Newsletter/CMSPages/GetCSS.aspx">
<location path="Newsletter/CMSPages/Unsubscribe.aspx">
Please check whether your
newsletter issue template contains an editable region macro (check it here:
CMS Desk -> Tools -> Newsletters -> Templates -> Edit). It often turns out that an editor deletes the following macro expression by accident:
$$content:600:400$$. Once it is inserted back to your issue template, it is editable again.
Just a note: the “content” expression stands for a title of the editable region window – any codename (i.e. the name without spaces and special characters) can be used at its position.
-ov-