Sub SendMail()
Dim ol As New Outlook.Application
Dim olmail As MailItem
Dim Corps$, Fichier$, EnvoyerA$, Sujet$
With Feuil1
EnvoyerA = .Range("a2")
Sujet = .Range("a4")
Corps = .Range("a6")
End With
Fichier = ThisWorkbook.Path & "\adresse.txt"
Set ol = New Outlook.Application
Set olmail = ol.CreateItem(olMailItem)
With olmail
.To = EnvoyerA
.Subject = Sujet
.Body = Corps & vbCrLf & vbCrLf & vbCrLf & recuptxt(Fichier)
.Display
'.Send'Pour envoyer sans prévisualisation
End With
End Sub