Sub Envoi_CA()
If MsgBox("SOUHAITEZ-VOUS ENVOYER LE POINT CA PAR EMAIL ?" & Chr(13) & Chr(10) & "( Une nouvelle fenètre OUTLOOK va être ouverte )", 36, "Envoyer Email") = vbYes Then
Dim OL As Object, myItem As Object, wDoc As Object, Rng As Object
Dim Fichier As String, plage_mail As Range
Set OL = CreateObject("Outlook.Application")
Set myItem = OL.CreateItem(olMailItem)
Set wDoc = myItem.GetInspector.WordEditor
Set FL = Worksheets("POINT_CA")
With Sheets("POINT_CA")
Set plage_mail = .Range("A1:G21")
End With
With myItem
.To = "1@1.fr;2@2.fr;3@3.fr"
.CC = "pp@aa.aa"
.Subject = [POINT_CA!C4] & " - Point Chiffres " & Date & ""
'.HTMLBody = "<HTML><BODY>Bonjour à tous,</p></BODY></HTML>"
.Display
plage_mail.Copy
Set Rng = wDoc.Content
Rng.InsertParagraphAfter
Rng.Move 4, 1
Rng.Paste
Rng.Move 4
End With
End If
Set OL = Nothing: Set myItem = Nothing: Set wDoc = Nothing
'Remonte à la cellule de Sélection du Magasin
Range("A1").Activate
End Sub