Quote:
|
Originally Posted by AskAR
It is now workig by above. I put below then its work.
objMail.Body = Uploader.form("name") & " - " & Uploader.form("email")
But issue is now I want to make it some HTML like:
Name: name
Email: email
Is it posible?
|
objMail.Body = "<b>Name: </b>" & Uploader.form("name") & "<br><b>Email: </b>" & Uploader.form("email")
make sure these two lines are in there as well
objMail.BodyFormat=0
objMail.MailFormat=0