Sub EnvoiPDF()
Dim Nom As String
Nom = ActiveSheet.Name & ".pdf"
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:= _
ActiveWorkbook.Path & "\" & Nom, Quality:=xlQualityStandard, _
IncludeDocProperties:=True, IgnorePrintAreas:=False, OpenAfterPublish:= _
False
Set olApp = CreateObject("Outlook.application")
Set m = olApp.CreateItem(0)
With m
.to = ActiveSheet.[G3]
.Attachments.Add ActiveWorkbook.Path & "\" & Nom
.Display
End With
End Sub