ASP.NET app to send an mail with a hyperlink
MailMessage message = new MailMessage(); message.From = new MailAddress("<a href="https://getridbug.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="50383b312210373d31393c7e333f3d">[email protected]</a>"); message.Subject = "Subject"; message.Body = "Please login"; SmtpClient smtp = new SmtpClient(); message.To.Add("<a href="https://getridbug.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="43282231222e222d03242e222a2f6d202c2e">[email protected]</a>"); smtp.Send(message); I want to have a hyperlink in the body of sent mail where it says “login”. How can I do that? Answers: Thank you for visiting … Read more