Tu veux parler de copie caché Cci ?
Set OutMail = OutApp.CreateItem(0)
With OutMail
.To = "test@domaine.com"
.CC = "testCC@domaine.com"
.BCC = "testBCC@domaine.com"
.Subject = "sujet"
.Display ' Affiche l'aperçu avant d'envoyer encore une fois
.HTMLBody = "Bonjour,<br><br>" & "corpsTexte" & "<br>" '& .HTMLBody ' Ajoute la signature Outlook par défaut mais visiblement
End With
Set OutMail = Nothing
Set OutApp = Nothing