Sub EnvoiMailParThunderBird_1()
Dim destinataire, sujet, fichierjoint As String
destinataire = "fricheteau.marie@free.fr"
sujet = "Fichier " & Range("D9").Value
text1 = " Bonjour " & "<br>"
text2 = "<br>"
text3 = " Je te prie de trouver ci-joint le fichier FACTURE en pdf " & "<br><br>"
text4 = "Bien Cordialement" & "<br><br>"
text5 = "JeanMi" & "<br><br>"
text6 = "Tél.: 01-01-01-01-01"
Body = text1 & text2 & text3 & text4 & text5 & text6
fichierjoint1 = "C:\Users\FACTURE_1.pdf"
'fichierjoint1 = "C:\Users\PC_PAPA\Desktop\File1.pdf" ' Premier fichier à joindre
'fichierjoint2 = "C:\Users\PC_PAPA\Desktop\File2.pdf" ' Second fichier à joindre
strcommand = "C:\Program Files (x86)\Mozilla Thunderbird\Thunderbird.exe"
strcommand = strcommand & " -compose " & "to='" & destinataire & "'"
strcommand = strcommand & "," & "subject=" & sujet & ","
strcommand = strcommand & "body=" & Body
strcommand = strcommand & "," & "attachment='file:///" & fichierjoint1 & "'"
'strcommand = strcommand & ",file:///" & fichierjoint2 & "'"
'MsgBox strcommand
Call Shell(strcommand, vbNormalFocus)
End Sub