function SendMailConfirmation(SubjectMailIs, BodyMailIs, ToMailIs)
'By Angel 18/7/2007
Dim objApp 'As Outlook.Application
Set objApp = CreateObject("Outlook.Application")
Set objMail = objApp.CreateItem(0)
With objMail
.Subject = SubjectMailIs
.Body = BodyMailIs
.To = ToMailIs
.Send
End With
end function
Une fois le formulaire fini, il vous permettra de réaliser un rendez-vous sur votre calendrier qui aura pour effet d'envoyer un e-mail.