Pièces jointes VBA

JO882161 Messages postés 6 Date d'inscription   Statut Membre Dernière intervention   -  
JO882161 Messages postés 6 Date d'inscription   Statut Membre Dernière intervention   -
Bonjour,

Pourquoi je n'arrive pas à envoyer des pièces jointes ?

'Envoie de l'email : eMail

Private Sub CommandButton1_Click()

'Working in Excel 2002-2016
Dim AWorksheet As Worksheet
Dim Sendrng As Range
Dim rng As Range


On Error GoTo StopMacro

With Application
.ScreenUpdating = False
.EnableEvents = False
End With

'Fill in the Worksheet/range you want to mail
'Note: if you use one cell it will send the whole worksheet
Set Sendrng = Worksheets("Mail").Range("A1:G23")

'Remember the activesheet
Set AWorksheet = ActiveSheet

With Sendrng

' Select the worksheet with the range you want to send
.Parent.Select

'Remember the ActiveCell on that worksheet
Set rng = ActiveCell

'Select the range you want to mail
.Select

' Create the mail and send it
ActiveWorkbook.EnvelopeVisible = True
With .Parent.MailEnvelope

' Set the optional introduction field thats adds
' some header text to the email body.
.Introduction = "Produktionsanleitung für Klusi."

With .Item
.To = Worksheets("Mail").Range("B23")
.CC = ""
.BCC = ""
.Subject = "Klusi"
.Attachements.Add ("Q:\ZLS-Command_Temp\UST Mühleberg Duplex 16kV Ltg. Illiswil")
.Send ' envoie automatique
End With

End With

'select the original ActiveCell
rng.Select
End With

'Activate the sheet that was active before you run the macro
AWorksheet.Select

StopMacro:
With Application
.ScreenUpdating = True
.EnableEvents = True
End With
'ActiveWorkbook.EnvelopeVisible = False

End Sub


A voir également:

2 réponses

yg_be Messages postés 23541 Date d'inscription   Statut Contributeur Dernière intervention   Ambassadeur 1 584
 
Tu as un message d'erreur?
Ce n'est pas la présence d'espaces dans le nom qui cause le problème?
0
JO882161 Messages postés 6 Date d'inscription   Statut Membre Dernière intervention  
 
Non pas de message d'erreur ;)
0
yg_be Messages postés 23541 Date d'inscription   Statut Contributeur Dernière intervention   1 584
 
Le mail est envoyé sans fichier attaché?
0
JO882161 Messages postés 6 Date d'inscription   Statut Membre Dernière intervention  
 
en effet :) ja'i fais Ctrl C @ V qui n'as pas marché. Grrrrrrrrrrrr.

Sais-tu si y a possibilité d'envoyé juste une feuille de mon fichier excel ?
0
yg_be Messages postés 23541 Date d'inscription   Statut Contributeur Dernière intervention   1 584
 
Je pense qu'il faut créer un nouveau fichier ne contenant qu'une feuille, et puis attacher ce fichier au mail.
0
JO882161 Messages postés 6 Date d'inscription   Statut Membre Dernière intervention  
 
Par exemple :

With .Item
.To = Worksheets("Mail").Range("B23")
.CC = ""
.BCC = ""
.Subject = "Klusi"
.Attachments.Add = Worksheets("Mail")
.Send ' envoie automatique

End With
0
yg_be Messages postés 23541 Date d'inscription   Statut Contributeur Dernière intervention   1 584
 
Non, c'est plus compliqué.
0