Send Email With Signature VBA (EDITING A VBA CODE)

Youseepooo

New Member
Joined
Feb 5, 2019
Messages
37
Hello,
With some help from a fellow forum user i have this code:

1) The issues are i want it to save the file name as "x" which is tomorrows date and save it in a network shared folder.

2) i also want to include a image for my company logo after my position. in the body of the email which i highlighted in blue.



Thank You Very Much!!!

Sub Send_Email()
Dim wPath As String, wFile As String
Dim x As Date
x = Format(Now() + 1, "MMMM dd, yyyy")
wPath = ThisWorkbook.Path
wFile = "Daily Look Ahead.pdf"
Range("B1:I47").ExportAsFixedFormat Type:=xlTypePDF, Filename:=wPath & wFile, _
Quality:=xlQualityStandard, IncludeDocProperties:=True, _
IgnorePrintAreas:=False, OpenAfterPublish:=False




Set dam = CreateObject("Outlook.Application").CreateItem(0)
'
dam.To = "ymussa@gmail.com"
dam.cc = "jsilko@gmail.com"
dam.Subject = "Daily Schedule for " & x
dam.body = "Hello all," & vbNewLine & vbNewLine _
& "The Daily Look Ahead Schedule for " & x & " is attached." & vbNewLine & vbNewLine & vbNewLine & vbNewLine _
& "Thank You" & vbNewLine & "Name" & vbNewLine & "Position" & vbNewLine & "Test Sent with VBA"
dam.Attachments.Add wPath & wFile
dam.Send
MsgBox "Email sent"




End Sub
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
To embed an image within the body of an email, the image first needs to be attached to the email, and then it can be assigned to it using the HTMLBody property. Therefore, first define the folder and filename for your image...

Code:
Dim strPathToImageFolder As String
Dim strImageFilename As String

strPathToImageFolder = "C:\Users\Domenic\Pictures\" 'change the path accordingly
If Right(strPathToImageFolder, 1) < > "\" Then
    strPathToImageFolder = strPathToImageFolder & "\"
End If

strImageFilename = "sample.jpg" 'change the filename accordingly

Then, build your string, which will ultimately be assigned to the HTMLBody property...

Rich (BB code):
******************** For the following code, remove all spaces after each < symbol. ************************

Dim strHTML As String

strHTML = "<  p>Hello all,< /p>"
strHTML = strHTML & "<  p>The Daily Look Ahead Schedule for " & x & " is attached.< /p>"
strHTML = strHTML & "<  p>Thank You< br>Name< br>Position< br>< img src=""cid:" & strImageFilename & """>< br>< br>Test Sent with VBA< /p>"

Then attach the image to the email, in addition to attaching the PDF file...

Code:
With dam
    .attachments.Add wPath & wFile
    .attachments.Add strPathToImageFolder & strImageFilename
End With

Then, assign the html string to the email...

Code:
dam.htmlbody = strHTML

Also, just in case you're not already aware of it, when testing your code you can replace dam.send with dam.display so that the email isn't actually sent. It's only displayed. Then, when everything seems okay, you can replace dam.display with dam.send.

By the way, please use code tags [ Code]...[/Code] instead of quote tags when posting your code. Assuming that it's formatted correctly, it will make it a lot easier to read.

Hope this helps!
 
Last edited:
Upvote 0
i tried runnning it as follows but it keeps giving me an error.

Code:
Dim strPathToImageFolder As StringDim strImageFilename As String


strPathToImageFolder = "C:\Users\ymussa\Pictures\Camera Roll" 'change the path accordingly
If Right(strPathToImageFolder, 1) <> "\" Then
    strPathToImageFolder = strPathToImageFolder & "\"
End If
strImageFilename = "pcc.jpg" 'change the filename accordingly


strHTML = "<p>Hello all,</p>"
strHTML = strHTML & "<p>The Daily Look Ahead Schedule for " & x & " is attached.</p>"
strHTML = strHTML & "<p>Thank You<br>Name<br>Position<br><img src=""cid:" & strImageFilename & """><br><br>Test Sent with VBA</p>"
strHTML = "<p>Hello all,</p>"
strHTML = strHTML & "<p>The Daily Look Ahead Schedule for " & x & " is attached.</p>"
strHTML = strHTML & "<p>Thank You<br>Yousef Mussa<br>Position<br><img src=""cid:" & strImageFilename & """><br><br>Test Sent with VBA</p>"
    With dam
    .attachments.Add wPath & wFile
    .attachments.Add strPathToImageFolder & strImageFilename
End With
    dam.htmlbody = strHTML
     MsgBox "Email sent"
    End Sub
 
Upvote 0
Your macro can be amended as follows...

Code:
Sub Send_Email()

    Dim dam As Object
    Dim wPath As String
    Dim wFile As String
    Dim x As Date
    
    Dim strPathToImageFolder As String
    Dim strImageFilename As String
    Dim strHTML As String
    
    x = Format(Now() + 1, "MMMM dd, yyyy")
    
    wPath = ThisWorkbook.Path
    wFile = "Daily Look Ahead.pdf"
    Range("B1:I47").ExportAsFixedFormat Type:=xlTypePDF, Filename:=wPath & "\" & wFile, _
        Quality:=xlQualityStandard, IncludeDocProperties:=True, _
        IgnorePrintAreas:=False, OpenAfterPublish:=False
    
    strPathToImageFolder = "C:\Users\ymussa\Pictures\Camera Roll"
    If Right(strPathToImageFolder, 1) <> "\" Then
        strPathToImageFolder = strPathToImageFolder & "\"
    End If
    
    strImageFilename = "pcc.jpg"
    
    strHTML = "<p>Hello all,</p>"
    strHTML = strHTML & "<p>The Daily Look Ahead Schedule for " & x & " is attached.</p>"
    strHTML = strHTML & "<p>Thank You<br>Name<br>Position<br><img src=""cid:" & strImageFilename & """><br><br>Test Sent with VBA</p>"
    
    Set dam = CreateObject("Outlook.Application").CreateItem(0)
    
    With dam
        .To = "ymussa@gmail.com"
        .cc = "jsilko@gmail.com"
        .Subject = "Daily Schedule for " & x
        .attachments.Add wPath & wFile
        .attachments.Add strPathToImageFolder & strImageFilename
        .htmlbody = strHTML
        .Send
    End With
    
    Set dam = Nothing
        
    MsgBox "Email sent"


End Sub

Note that I noticed the path and filename assigned to the Filename argument of ExportAsFixedFormat was missing a backslash (\). Accordingly, I added the backslash.

Hope this helps!
 
Upvote 0
i would like the file to be saved in a certain location im not sure if it is actually saving it in this location:

J:\Schedules

ALSO the attached exported pdf is titled "Desktop daily look ahead" when i really want it to say " Daily look Ahead for (Tomorrows date)"
can you help me with these last adjustments
thanks alot
 
Upvote 0
With dam .attachments.Add wPath & wFile
.attachments.Add strPathToImageFolder & strImageFilename End With

for that part how can i adjust to make save file name in a specific location and with tomorrows date?
 
Upvote 0
Try making the following changes in red...

Code:
Sub Send_Email()

    Dim dam As Object
    Dim wPath As String
    Dim wFile As String
[COLOR=#ff0000]    Dim x As String[/COLOR]
    
    Dim strPathToImageFolder As String
    Dim strImageFilename As String
    Dim strHTML As String
    
    x = Format(Now() + 1, "MMMM dd, yyyy")
    
[COLOR=#ff0000]    wPath = "J:\Schedules"[/COLOR]
[COLOR=#ff0000]    wFile = "Daily Look Ahead for " & x & ".pdf"[/COLOR]
    Range("B1:I47").ExportAsFixedFormat Type:=xlTypePDF, Filename:=wPath & "\" & wFile, _
        Quality:=xlQualityStandard, IncludeDocProperties:=True, _
        IgnorePrintAreas:=False, OpenAfterPublish:=False
    
    strPathToImageFolder = "C:\Users\ymussa\Pictures\Camera Roll"
    If Right(strPathToImageFolder, 1) <> "\" Then
        strPathToImageFolder = strPathToImageFolder & "\"
    End If
    
    strImageFilename = "pcc.jpg"
    
    strHTML = "< p>Hello all,</p>"
    strHTML = strHTML & "< p>The Daily Look Ahead Schedule for " & x & " is attached.</p>"
    strHTML = strHTML & "< p>Thank You< br>Name< br>Position< br><img src=""cid:" & strImageFilename & """>< br>< br>Test Sent with VBA</p>"
    
    Set dam = CreateObject("Outlook.Application").CreateItem(0)
    
    With dam
        .To = "ymussa@gmail.com"
        .cc = "jsilko@gmail.com"
        .Subject = "Daily Schedule for " & x
        .attachments.Add wPath & wFile
        .attachments.Add strPathToImageFolder & strImageFilename
        .htmlbody = strHTML
        .Send
    End With
    
    Set dam = Nothing
        
    MsgBox "Email sent"




End Sub
 
Upvote 0
it wont run i get a error of not finding file. Verify path and file name are correct..
this code wont run and debugs on line 36

".attachments.Add wPath & wFile"
 
Upvote 0
its actually not running correctly i just noticed but its not attaching the specific spreadsheet. It keeps sending a different one not the actual one i am work on from my excel.
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,750
Members
448,989
Latest member
mariah3

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