Hi,I create a link in my newsletter using this C# code
linkSendToFriend.HRef = string.Format(@ABSURL/ForwardToAFriend.aspx?r={0}@, CMS.Helpers.RequestContext.CurrentURL);This works well but now I want to add the email address of the subscriber to the above URL. I cannot do that using this resolver
{%Email|(resolver)subscriber%}I would expect the final url to be @ABSURL/ForwardToAFriend.aspx?r=URL of the current page@email=test@email.com@ when the email was sent to test@email.comAny ideas?Thank you,
↧