Re : Envoi mail automatique selon limite de validité (Date)
Le pas à pas s'arrête au niveau du l'adresse mail.
Sub EnvoiMail()
Dim oApp As Outlook.Application
Dim oMail As MailItem, i&
Set oApp = CreateObject("Outlook.application")
Set oMail = oApp.CreateItem(olMailItem)
For i = 4 To [D65536].End(3).Row
If Now + 90 > Cells(i, 4) Then
With oMail
.To = "xxx.llll@hhhh.fr"
.Subject = "Limite validite Attestation Formateur"
.Body = "Bonjour," & Chr(10) & Cells(i, 3) & Chr(10) & Cells(i, 4) & Chr(10) & Cells(i, 2)
.Send
End With
End If
Next
End Sub