Question sending a link in an email

oldpl1guy

Member
Joined
Jun 27, 2009
Messages
13
Programming Experience
1-3
Greetings,

I am developing an app that requires users to register to use. I request an email address to which I send a clickable link that allows the user to then register a userID and a password. All works well EXCEPT...when the link appears in the recipient's mail it also contains information that is being embedded by the system. I am sending http://www.(web site).com/blog/Validate/default.aspx?passvalue=(recipient email address).
What is being received is:
(recipient email address)" class="parsedLink" target="_blank">http://www.(web site)/blog/Validate/default.aspx?passvalue=(recipient email address).

Is there any way to strip off the information in front of http:...?

The link is not clickable as it is received.

Thanks
Tom
 
I included under with mailMessage .IsBodyHtml = True
And then you code Html body. To create a link (anchor tag): HTML a tag
 
Back
Top