Je voudrais savoir si ma traduction est bonne ou pas.
En premier le code original fait pour CDONTS et en dessous ma traduction pour ASPMAIL 4.0
------------------------------------------------------------
CDONTS (original)
------------------------------------------------------------
Set ObjCDO = Server.CreateObject("CDONTS.NewMail" )
ObjCDO.To = sTo
ObjCDO.From = MailFrom
ObjCDO.Subject = Subject
ObjCDO.Body = Body
ObjCDO.Send
Set ObjCDO = Nothing
-------------------------------------------------------------
TRADUCTION ASPMAIL
-------------------------------------------------------------
Set Mailer = Server.CreateObject("SMTPsvg.Mailer" )
Mailer.AddRecipient "sTo","adresse_destination"
Mailer.FromAddress= "MailFrom"
Mailer.Subject= "subject"
Mailer.BodyText = Body
--------------------------------------------------------------
ESt ce ok ?