Is there a functional parameter for replyto as the the following page did not realy address it:
http://forums.asp.net/t/1622357.aspx/1?WebMail+Send+additionalHeaders
WebMail.Send(replyto: "Reply to this email instead")
I don't know if this is what you are thinking of:
var header = new[]{"Reply-To:test@gmail.com"}; WebMail.Send(to: customerEmail, subject: "My Message", body: "My Message is", additionalHeaders: header );
Persicely, thank you.