Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Send Hyperlink in Email 1

Status
Not open for further replies.
Mar 14, 2002
711
US
I am trying to send a hyperlink in an email generated by ASP.NET code, but it does not make the link active once it arrives in Email (Outlook 2003).

Here's the code:

Dim dt As DataTable
Dim da As SqlClient.SqlDataAdapter
dt = New DataTable("Supervisor")

cmdSelect.Connection = objConn
da = New SqlClient.SqlDataAdapter(cmdSelect)
da.Fill(dt)

System.Web.Mail.SmtpMail.SmtpServer = "SMTPExchGW..."

Dim objMail As New MailMessage()


objMail.From = "user@somewhere.com"


objMail.To = CStr(DataBinder.Eval(dt, "defaultview.[0].Username"))


objMail.BodyFormat = MailFormat.Html

objMail.Subject = "Kaizen Submission"

objMail.Body = "A Kaizen form has been submitted for your review, look for: Title: " & Title & " , User Name: " & LastName & " , Date Submitted: " & Dte & "." + " please go to
SmtpMail.Send(objMail)

objConn.Close()


End Sub


This is what I get:

A Kaizen form has been submitted for your review, look for: Title: test , User Name: Sandberg, Nicklas , Date Submitted: 10/23/2006. please go to - But the hyperlink is not active....any ideas??

Thanks,
 
Since you use HTML format in your email, why not:


Code:
Please go to <a href='[URL unfurl="true"]http://kannebunk/Kaizen/Report-Selection.aspx'>Report[/URL] Selection</a>

Daren J. Lahey
Just another computer guy...
FAQ183-874 contains Suggestions for Getting Quick and Appropriate Answers to your questions.
 
Not a problem.
Glad I could help

ps. thanks for the STAR

Daren J. Lahey
Just another computer guy...
FAQ183-874 contains Suggestions for Getting Quick and Appropriate Answers to your questions.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top