Rate this article :
This article was useful to you ?
Yes
No
Vous avez noté 0 étoile(s)
Procédure
Here is an example of code to send an e-mail with an attachment and the SmartMail component:
On error resume next Dim mySmartMail Set mySmartMail = Server.CreateObject("aspSmartMail.SmartMail") 'Email server mySmartMail.Server = "127.0.0.1" 'Sender mySmartMail.SenderName = "SenderName" mySmartMail.SenderAddress = "expediteur@domaine.com" 'Recipients mySmartMail.Recipients.Add "destinataire1@2plat.com", "RecipientName1" mySmartMail.Recipients.Add "destinataire2@2plat.com", "RecipientName2" 'Message mySmartMail.Subject = "Test aspSmartMail" mySmartMail.Body = "This is a test of the aspSmartMail component." 'Attachment mySmartMail.Attachments.Add ("C:\sample.txt"),, false 'Sending the message mySmartMail.SendMail 'Error handling If err.number <> 0 Then response.write("Error no. " & err.number - vbobjecterror & " = " & err.description & " ") Else Response.Write "Message sent with aspSmartMail " Response.Write mySmartMail.Attachments.Item(1).FilePathName End If 'Destroy object Set mySmartMail = Nothing
Rate this article :
This article was useful to you ?
Yes
No
Bonjour,
Merci de votre retour.
Toutes ses informations sont disponibles depuis votre panel client.
Voici une documentation qui pourra vous aider à récupérer ces informations : https://aide.lws.fr/a/1283
Je vous remercie de votre attention et reste à votre disposition pour toute autre question ou complément d'information.
Nous vous invitons à contacter notre service support à travers votre espace client, afin de vous apporter une aide si vous rencontrez des difficultés quelconque. (Contacter le support LWS)
Cordialement, L'équipe LWS