Reply-To option in CDO?
CDONTS offers a "Reply-To" option. Does CDO offer the same?
CDONTS Example:
Set objCDO = Server.CreateObject("CDONTS.NewMail")
objCDO.To = trim(request.form("Email"))
objCDO.From = trim(request.form("From"))
objCDO.Value("Reply-To") = trim(request.form("ReplyTo"))
objCDO.Subject = trim(request.form("Subject"))
objCDO.Body = trim(request.form("Message"))
objCDO.Send
CDO Example:
Set myMail=CreateObject("CDO.Message")
myMail.Subject = trim(request.form("Subject"))
myMail.From = trim(request.form("From"))
myMail.To = trim(request.form("Email"))
myMail.TextBody = trim(request.form("Message"))
myMail.Send
...Any help would be greatly appreciated!
__________________________________________________ _____________
Confidence is what you feel when you do not truly understand the situation.
__________________
__________________________________________________ _____________
Confidence is what you feel when you do not truly understand the situation.
|