Envoie de mail par Outlook
Bonjour à tous,
je reviens vers vous pour une toute nouvelle question.
Qui je l’espère pourra aider d’autre personne
Depuis le 30 mai Google à changer sa politique pour l’envoie de mail via des scripts VBS
Le code ci-dessous fonctionnait très bien depuis un bon moment
L’envoie de mail ce faisait très bien via Gmail.
depuis le 30 mai ce script ne fonctionne plus
Ma question est donc peut-on avec ce script passer par Outlook au lieu de Gmail
Merci par avance pour vos réponses
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
| Const cdoSendUsingPickup = 1 'Send message using the local SMTP service pickup directory.
Const cdoSendUsingPort = 2 'Send the message using the network (SMTP over the network).
Const cdoAnonymous = 0 'Do not authenticate
Const cdoBasic = 1 'basic (clear-text) authentication
Const cdoNTLM = 2 'NTLM
'===========================================================
EmailSender = "xxxxxxxxx@hotmail.fr" 'à changer
PassOutlook = "1234567" 'à changer
Email_Destinataire = "xxxxxxxxxx@gmail.com" 'à changer
'===========================================================
Set objMessage = CreateObject("CDO.Message")
objMessage.Subject = "tout est Activer"
objMessage.From = """Systems"" <"& EmailSender &">"
objMessage.To = Email_Destinataire
objMessage.HTMLBody = ""
'==This section provides the configuration information for the remote SMTP server.
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
'Name or IP of Remote SMTP Server
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "smtp.gmail.com"
'Type of authentication, NONE, Basic (Base64 encoded), NTLM
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = cdoBasic
'Your UserID on the SMTP server
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/sendusername") = EmailSender
'Your password on the SMTP server
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/sendpassword") = PassGmail
'Server port (typically 25)
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 465
'Use SSL for the connection (False or True)
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = True
'Connection Timeout in seconds (the maximum time CDO will try to establish a connection to the SMTP server)
objMessage.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60
objMessage.Configuration.Fields.Update
'==End remote SMTP server configuration section==
On Error Resume Next
objMessage.Send
If err <> o Then
Msgbox Err.Description,vbCritical,Err.Description
else
end if |