Creating a Hypertext link in an email attachment?http://forums.asp.net/t/297784.aspx/1?Creating+a+Hypertext+link+in+an+email+attachment+Sat, 02 Aug 2003 06:54:56 -0400297784297784http://forums.asp.net/p/297784/297784.aspx/1?Creating+a+Hypertext+link+in+an+email+attachment+Creating a Hypertext link in an email attachment? I hope that I am wording this correctly - I have created a form and when the form is submitted I have an email that is generated and sent to certain individuals. What I would like to do is within the standard email message I would like to include a hypertext link to where they can view the form. Each form has its own id#, which makes it easy for the Admin to look up. So how could I do this? I hope that I am clear seeing how I am new to this... Here is part of my email code - (is this where I would place the code for the query string?) Dim sb As New System.Text.StringBuilder Dim strMsgBody As String Dim Mail As New Mail.MailMessage strMsgBody = sb.ToString() Mail.To = Recipient Mail.Subject = "A Centalized Issue has just been posted." Mail.Body = strMsgBody Mail.BodyFormat = System.Web.Mail.MailFormat.Html Mail.From = EmailID & "@abc.com" System.Web.Mail.SmtpMail.SmtpServer = "i002.abc.com" System.Web.Mail.SmtpMail.Send(Mail) DisplayMessage() 2003-08-01T20:20:55-04:00298039http://forums.asp.net/p/297784/298039.aspx/1?Re+Creating+a+Hypertext+link+in+an+email+attachment+Re: Creating a Hypertext link in an email attachment? Hi vedwards, ur code strMsgBody += "http://www.hotmail.com"; Mail.Body = strMsgBody; ur code i feel this shud do ur job. hope this helps --- Rohit 2003-08-02T06:11:03-04:00