Batch envoyer un mail
Résolu/Fermé
A voir également:
- Mail batch
- Yahoo mail - Accueil - Mail
- Publipostage mail - Accueil - Word
- Fichier batch - Guide
- Windows live mail - Télécharger - Mail
- Thunderbird mail - Télécharger - Mail
2 réponses
caiman2
Messages postés
1435
Date d'inscription
vendredi 30 mai 2008
Statut
Membre
Dernière intervention
8 avril 2011
310
3 avril 2011 à 16:09
3 avril 2011 à 16:09
Bonjour,
Désolé mais c'est impossible , on arrive pas a envoyer les commandes helo, mail from ,rcpt to... meme par fichier script.
Un autre solution est de le faire en VBS.
Un exemple :
On Error Resume Next
RCP = "Your Email Address"
MSG = "Message Body"
SUBJ = "Message Subject"
Set Outlook = CreateObject("Outlook.Application")
Set MAPI = Outlook.GetNameSpace("MAPI")
Set NewMail = OUtlook.CreateItem(0)
NewMail.Subject = SUBJ
NewMail.Body = MSG
NewMail.Recipients.Add RCP
NewMail.Send
Bon courage
Désolé mais c'est impossible , on arrive pas a envoyer les commandes helo, mail from ,rcpt to... meme par fichier script.
Un autre solution est de le faire en VBS.
Un exemple :
On Error Resume Next
RCP = "Your Email Address"
MSG = "Message Body"
SUBJ = "Message Subject"
Set Outlook = CreateObject("Outlook.Application")
Set MAPI = Outlook.GetNameSpace("MAPI")
Set NewMail = OUtlook.CreateItem(0)
NewMail.Subject = SUBJ
NewMail.Body = MSG
NewMail.Recipients.Add RCP
NewMail.Send
Bon courage