Microsoft
Software
Hardware
Network
Question : replying html mail which is coming from my web site
I have communication form on my website,
my users send us emails via this form.
the email is coming from my website so I made the from part is like "
www.mywebsite.com
"
but some people tent to reply the mail whose from part is
www.mywebsite.com
.
I know that in PHP there is solution for this, when they reply this email you can give any email address that you want.
in PHP it is like
$headers .= "From:
www.mywebsite.com.\r\nRepl
y-To
:
[email protected]
";
what about ASP?
Set objMessage = Server.CreateObject("CDO.M
essage")
objMessage.Subject = topic
objMessage.BodyPart.Charse
t = "utf-8"
objMessage.Sender = "
[email protected]
m"
objMessage.From = "
www.mywebsite.com
"
objMessage.To = mymail
'objMessage.Cc = "
[email protected]
"
objMessage.Bcc = mymailBCC
objMessage.HTMLBody = msg_txt
Answer : replying html mail which is coming from my web site
try setting the
ReplyTo
property.
1:
objMessage.ReplyTo = "
[email protected]
"
Random Solutions
Exporting X509 published certificate information
Macro to clear all rows below the last cell of data
Mapping drives over a site to site VPN
Excel 2007 viewer error in Windows Server 2008 R2 terminal server (crash)
Fake Antivirus program prevents any application from being launched
Dead harddrive - clicking sound
Locking a header & a footer in Microsoft Word 2003
cant delete folders: The source file name(s) are larger than is supported by the file system...
Send email from .aspx page using Exchange and have it show in users Outlook Sent folder.
Something keeps changing the default permissions of my settings.php file for a web site on Linux