Sub CommandButton()
Dim olApp As Object
Dim olMail
Dim fichier$
Set olApp = CreateObject("Outlook.Application")
Set olMail = olApp.CreateItem(0)
fichier = "" 'ICI CHEMIN COMPLET DU FICHIER À ENVOYER
With olMail
.To = "toto@amoto.roule"
.Subject = "Feuille de garde FDF"
.BCC = ""
.Body = "azerty"
.Attachments.Add fichier
.Display 'Pour visualiser
'.Send 'Envois direct
End With
Set olMail = Nothing
Set olApp = Nothing
End Sub