Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Submiting e-mail from an asp page with SMTPsvg object.

Status
Not open for further replies.

gus121

Technical User
May 9, 2002
298
GB
Hi i am administering this e-commerce website. For the autoresponse email handler bit off the website uses a SMTPsvg.Mailer object. Is this similar or the same as the CDONTS mail object I am familar with? Do i need to install some software on to the server too be able to use this object (e.g. an add on to ISS)? Where can I find information on this object?

Thanks alot for your help:

This is the ASP code mail object thing.

Set Mailer = Server.CreateObject("SMTPsvg.Mailer")
Mailer.RemoteHost = "smtpmail"
Mailer.FromName = Session("Site_Name")
Mailer.FromAddress = Session("Site_Email")
Mailer.AddRecipient "", Customers("Email_Address").Value
Mailer.Subject = Email_Subject & " - " & Session("Site_Name")
Mailer.Organization = Session("Site_Name")

thanks

Angus

http:\\ Regards Angus Grant,

http\\
 
i'd say from the code that it is a third party component that is (needs to be ) on the server...no idea on where you can find something on this though...

try google Bastien

There are many ways to skin this cat,
but it still tastes like chicken
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top