开发者

Web form does not make the correct reply

I have a asp.net c# site with a property reply form to the seller member at www.somewebsite.com. When a reply is sent, the email address from the sender is just regular text and I need it to be a link.

That is, the receiving members should be able to just click on the senders email address and open it in the members email client to reply. How do I do that in code? I am not a developer but owner but开发者_如何学Go can make minor code changes and check it in.


If it is HTML email, you can put a mailto around the email.

<a href="mailto:someone@somewhere.com">person's email address</a>

That should do it, as long as the email is in HTML format.


Assuming the mail is being sent by ASP.Net using the System.Net.MailMessage class, you need to ensure that the MailMessage.From property is correctly set. More info here: http://msdn.microsoft.com/en-us/library/system.net.mail.mailmessage.from.aspx

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜