I am working on a Work Order Management system, where a user creates a work order, hits the insert button, and after validating the fields I am sending an email.
In the body of the email I would like for the value from a textbox to be clickable via a link (the value is the Work Order Number)
mm.Body = "WorkOrderNumber" + ": " +
"<a href=\"http://someserver/WorkOrderMgnt/ViewAllWorkOrders.aspx\"></a>"
+TextBox13.Text
+"<-Click on the Work Order Number"
mm.IsBodyHtml = true;
I don't get a link to click in the email. What I am doing wrong?