Hi All... This is my first post on this forum so hopefully i explain myself properly.
We have an asp classic application that sends emails using CDOSYS. When we send the email we set the From Address to admin@ourcompany.com but the Reply To address is set to admin@theircompany.com... where ourcompany is my works domain and theircompany is the recipients domain. The TO address is set to a specific person i.e. john@theircompany.com.
The layout would be something like this:
'Send the email via CDONTS
Set objCDO = Server.CreateObject("CDONTS.NewMail")
objCDO.To = "john@theircompany.com"
objCDO.From = "admin@ourcompany.com"
objCDO.Subject = subject
objCDO.ReplyTo = "admin@theircompany.com"
This means that when the user replies to the email it automatically populates the reply to as their administrator at their company (admin@theircompany.com)
The issue is that when their out of office is switched on, our administrator (admin@ourcompany.com) receives an email because an email is bounced/autoreplyed by their server. The autoreply seems to reply to the From Address not the Reply To address.
We cannot use any other email address because a lot of servers bounce emails that are not sent from the domain that is in the email's From Address.
Is there any way to control this either from our server or via the email function within ASP Classic?
Cheers
Gwasshoppa
↧