<% myMail.HTMLBody="Note : If you dont want to recieve further updates, please <a href=www.ABC.com/unsub.asp?Email=EmailArray(K)>UN-SUBSCRIBE</a>" %>
How to insert "EmailArray(K)" in the URL as even below code gives me an error :
Microsoft VBScript compilation error '800a0401' Expected end of statement
<% myMail.HTMLBody="Note : If you dont want to recieve further updates, please <a href="www.ABC.com/unsub.asp?Email=" & EmailArray(K) & ">UN-SUBSCRIBE</a>" %>
myMail.HTMLBody="Note : If you dont want to recieve further updates, please <a href=www.ABC.com/unsub.asp?Email=" & EmailArray(K) & ">UN-SUBSCRIBE</a>"
I want to mail "TextBody" content as a email content.But its giving me an error.
Here it goes :
TextBody="Dear,Thanks a lot for registering with us.We proudly welcome you to the ULC group.Also do JOIN our" & <a href="http://www.abc.com/forum/register.asp"> & "FORUM" & </a> & "to find all our LATEST and HOT Process details (Require a Simple Email Validation) : http://www.abc.com/forum/register.asp."
TextBody="Dear,Thanks a lot for registering with us.We proudly welcome you to the ULC group.Also do JOIN our <a href=""http://www.abc.com/forum/register.asp""> " & FORUM & "</a> to find all our LATEST and HOT Process details (Require a Simple Email Validation) : http://www.abc.com/forum/register.asp."
shoudlnt it be like this? seems like u had to many " and &
<html>Dear,Thanks a lot for registering with us.We proudly welcome you to the ULC group.Also do JOIN our <a href="http://www.abc.com/forum/register.asp">FORUM</a>to find all our LATEST and HOT Process details (Require a Simple Email Validation) : http://www.abc.com/forum/register.asp.</html>