Send a PDF files via email but my pdf files wont attach

holy_eti

New Member
Joined
Jun 5, 2018
Messages
38
hi everyone, I am trying to save a PDF files via email using VBA. I am running my code but gets an error when I am trying to attach my files to the email. Could someone help me with this?
My guess is that I dont define my variant fichier as it should be and I've tried to define it otherwise and it didnt worked.
Thank you all

Code:
Dim xOutlookObj, xEmailObj As Object
Dim fichier As String

fichier = "C:\my link.pdf"
Set xOutlookObj = CreateObject("Outlook.Application")
Set xEmailObj = xOutlookObj.CreateItem(0)
With xEmailObj
    .Display
    .To = "someone@hotmail.com"
    .CC = ""
    .Subject = "my subject"
    .Attachement.Add fichier   ' This is the line where my error comes. Everything before or after works fine.
    .Body = " Hello here is your mail"
    .Send
End With
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Found my error. As my first language isnt English but French, I was writting Attachments.Add in French instead of English. Now, the code is working.
 
Upvote 0

Forum statistics

Threads
1,214,832
Messages
6,121,853
Members
449,051
Latest member
excelquestion515

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top