corsu2a
XLDnaute Occasionnel
Bonjour
J'utilisais jusqu’à maintenant une macro simple qui ouvrait la fenêtre d'envoi avec la PJ, mais les gens qui n'ouvraient pas Outlook, le mail se plaçuait dans la boite d'envoi.
Inclut la PJ dans le corps du mail :
Sub envoi_mail()
'
' envoi_mail Macro
'
'
Application.Dialogs(xlDialogSendMail).Show
End Sub
Ouvre Outlook et envoie
Je dois rajouter a ma macro, l'ouverture de Outlook, j'ai cette macro mais elle ne joint pas le document excel, elle ouvre et envoi le mail sans pièces jointe. Est il possible d'integrer la macro simple
Merci pour votre aide.
Sub SendMail_Outlook()
Dim OL As Object
Dim OLmail As Object
Set OLk_Appli = CreateObject("Outlook.Application")
If OLk_Appli.Explorers.Count > 0 Then
'Ok outlook ouvert
Else
'mettre le bon chemin outlook
OLk_OK = Shell("C:\Program Files\Microsoft Office\Office16\outlook.exe", vbHide)
End If
Set OL = CreateObject("Outlook.Application")
Set OLmail = OL.CreateItem(0)
With OLmail
.To = "..............@aol.com;DDDffs@dddff.fr"
.Subject = "Feuille de garde FDF"
.Body = "azerty"
'.display
.Send
End With
Set OLmail = Nothing
Set OL = Nothing
Set OLk_Appli = Nothing
End Sub
Merci pour tout.
J'utilisais jusqu’à maintenant une macro simple qui ouvrait la fenêtre d'envoi avec la PJ, mais les gens qui n'ouvraient pas Outlook, le mail se plaçuait dans la boite d'envoi.
Inclut la PJ dans le corps du mail :
Sub envoi_mail()
'
' envoi_mail Macro
'
'
Application.Dialogs(xlDialogSendMail).Show
End Sub
Ouvre Outlook et envoie
Je dois rajouter a ma macro, l'ouverture de Outlook, j'ai cette macro mais elle ne joint pas le document excel, elle ouvre et envoi le mail sans pièces jointe. Est il possible d'integrer la macro simple
Merci pour votre aide.
Sub SendMail_Outlook()
Dim OL As Object
Dim OLmail As Object
Set OLk_Appli = CreateObject("Outlook.Application")
If OLk_Appli.Explorers.Count > 0 Then
'Ok outlook ouvert
Else
'mettre le bon chemin outlook
OLk_OK = Shell("C:\Program Files\Microsoft Office\Office16\outlook.exe", vbHide)
End If
Set OL = CreateObject("Outlook.Application")
Set OLmail = OL.CreateItem(0)
With OLmail
.To = "..............@aol.com;DDDffs@dddff.fr"
.Subject = "Feuille de garde FDF"
.Body = "azerty"
'.display
.Send
End With
Set OLmail = Nothing
Set OL = Nothing
Set OLk_Appli = Nothing
End Sub
Merci pour tout.