Envoi mail auto via VBA sur Gmail
Résolu/Fermé
texastina
Messages postés
52
Date d'inscription
jeudi 15 janvier 2015
Statut
Membre
Dernière intervention
12 juin 2019
-
Modifié le 19 juil. 2018 à 17:47
jh - 25 avril 2019 à 09:44
jh - 25 avril 2019 à 09:44
A voir également:
- Vba gmail
- Gmail connexion - Guide
- Créer un compte gmail - Guide
- Gmail connexion autre compte - Guide
- Créer un compte gmail pour une autre personne - Forum Gmail
- Gmail - Guide
3 réponses
jordane45
Messages postés
38270
Date d'inscription
mercredi 22 octobre 2003
Statut
Modérateur
Dernière intervention
5 novembre 2024
4 695
Modifié le 19 juil. 2018 à 17:53
Modifié le 19 juil. 2018 à 17:53
Bonjour,
Je ne sais pas où tu as récupéré ce code mais je pense qu'il manque des choses...(et que ce n'est pas du VBA au passage)
Essaye ça :
et pour t'en servir
Je ne sais pas où tu as récupéré ce code mais je pense qu'il manque des choses...(et que ce n'est pas du VBA au passage)
Essaye ça :
Public Sub MailEnvoi(Serveur, Identify, User, PassWord, Port, Delay, Expediteur, Dest, DestEnCopy, Objet, Body, Pj) ' sub pour envoyer les mails Dim msg Dim Conf Dim Config Dim ess Dim splitPj Dim IsplitPj Set msg = CreateObject("CDO.Message") 'pour la configuration du message Set Conf = CreateObject("CDO.Configuration") 'pour la configuration de l'envoi Dim strHTML Set Config = Conf.Fields ' Configuration des parametres d'envoi '(SMTP - Identification - SSL - Password - Nom Utilisateur - Adresse messagerie) With Config If Identify = True Then .Item("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = True .Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 .Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = User .Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = PassWord End If .Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = Port .Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 .Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = Serveur .Item("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = Delay .Update End With 'Configuration du message 'If E_mail.Sign.Value = Checked Then Convert ServeurFrm.SignTXT, ServeurFrm.Text1 With msg Set .Configuration = Conf .To = Dest .cc = DestEnCopy .from = Expediteur .Subject = Objet ' .HTMLBody = Body '"<p align=""center""><font face=""Verdana"" size=""1"" color=""#9224FF""><b><br><font face=""Comic Sans MS"" size=""5"" color=""#FF0000""></b><i>" & body & "</i></font> " 'E_mail.ZThtml.Text If Pj <> "" Then splitPj = Split(Pj & ";", ";") For IsplitPj = 0 To UBound(splitPj) If Trim("" & splitPj(IsplitPj)) <> "" Then .AddAttachment Trim("" & splitPj(IsplitPj)) End If Next End If .Send 'envoi du message End With ' reinitialisation des variables Set msg = Nothing Set Conf = Nothing Set Config = Nothing End Sub
et pour t'en servir
Sub test() MailEnvoi "smtp.googlemail.com", True, "My.Mail@gmail.com", "Pasw", 465, 10, "My.Mail@gmail.com", "Vous.Mail@gmail.com", "Copy@gmail.com", "Suivi des modifications.", "tel truc a été modifile", "" End Sub
20 juil. 2018 à 10:21
Le code à été récupéré sur un site avec pourtant assez bonnes réputation,
J'essais ce code au plus vite et vous fait un petit retour sur ce que ça à donné :)
Merci encore pour ce code bien détaillé et tes précisions,
Cordialement
Nicolas