Bonjour,
Sans fichier représentatif et avec le résultat attendu, un test à adapter :
Sub MAIL()
Dim objOutlook As Object
Dim objEmail As Object, olMailItem As Variant
Dim LR%, L%, CORPS$, C As Byte, WS As Worksheet
Set WS = Worksheets("Feuil1") 'A adapter
LR = WS.Cells(WS.Rows.Count, 13).End(xlUp).Row 'Défini dernière ligne
For L = 1 To LR
For C = 1 To 12
If WS.Cells(L, C) <> "" Then CORPS = CORPS & WS.Cells(L, C) 'A adapter avec le reste du corps de texte/formatage HTML
Next C
Set objOutlook = CreateObject("Outlook.Application")
Set objEmail = objOutlook.CreateItem(olMailItem)
With objEmail
.To = WS.Cells(L, 13)
.Subject = "Sujet" 'A adapter
.HTMLBody = CORPS 'A adapter avec le reste du corps de texte/formatage HTML
.Display
End With
Next L
End Sub
Cdlt,