Emailing a workbook via VBA (subject line question)

zombiemaster

Board Regular
Joined
Oct 27, 2009
Messages
241
I have a report that I'm developing and want to email it automatically when it's ready. I know how to do most of it, but I'm having trouble with the Subject line within the email. I want the subject line to be the file name. Below is the code that I have right now, that works fine, that includes a "hard coded" subject line of "This Month's Report" but I want it to show the file name of "FREEZE CODES - MARCH 2019".

Code:
' Declare and establish the Object variables for Outlook:
    
    Dim objOutlook As Object
    Dim objNameSpace As Object
    Dim objInbox As Object
    Dim objMailItem As Object
    Set objOutlook = CreateObject("Outlook.Application")
    Set objNameSpace = objOutlook.GetNamespace("MAPI")
    Set objInbox = objNameSpace.Folders(1)
    Set objMailItem = objOutlook.CreateItem(0)
    
' An email will generate with the file as an attachment
    
    With objMailItem
    .To = "zombiemaster@noname.com"
    .CC = ""
    .Subject = "This month's report"
    .Body = _
    "Attached is the latest Freeze Code report." & Chr(10) & Chr(10) & _
    "If you have any questions, let me know." & Chr(10) & Chr(10)
    .Attachments.Add ActiveWorkbook.FullName
    .Display
    End With

' Release object variables from system memory
    
    Set objOutlook = Nothing
    Set objNameSpace = Nothing
    Set objInbox = Nothing
    Set objMailItem = Nothing

A bit earlier in the code, I have already declared the filename, and thought I might be able to use it here, but it didn't work.

Code:
' Saves the file with the correct month and year in the file name:
    Dim Path As String
    Dim filename As String
    Path = "\\Server\2019 testing\"
    filename = Range("F1")
    ActiveWorkbook.SaveAs filename:=Path & filename & ".xlsx"

I tried changing the code to show this, but it didn't work and the Subject line in the email just ended up empty:

Code:
    .Subject = filename

Thanks for any tips - it's probably just something simple, as usual...
~ZM~
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Code:
Option Explicit


Sub mailme()
' Declare and establish the Object variables for Outlook:
    
    Dim objOutlook As Object
    Dim objNameSpace As Object
    Dim objInbox As Object
    Dim objMailItem As Object
    Dim Filename As String
    
    Set objOutlook = CreateObject("Outlook.Application")
    Set objNameSpace = objOutlook.GetNamespace("MAPI")
    Set objInbox = objNameSpace.Folders(1)
    Set objMailItem = objOutlook.CreateItem(0)
    
    Filename = ActiveWorkbook.Name
        If InStr(Filename, ".") > 0 Then
           Filename = Left(Filename, InStr(Filename, ".") - 1)
        End If
' An email will generate with the file as an attachment
    
    With objMailItem
    .To = "zombiemaster@noname.com"
    .CC = ""
    .Subject = Filename
    .Body = _
    "Attached is the latest Freeze Code report." & Chr(10) & Chr(10) & _
    "If you have any questions, let me know." & Chr(10) & Chr(10)
    .Attachments.Add ActiveWorkbook.FullName
    .Display
    End With


' Release object variables from system memory
    
    Set objOutlook = Nothing
    Set objNameSpace = Nothing
    Set objInbox = Nothing
    Set objMailItem = Nothing
End Sub
 
Upvote 0
I had already tried .Subject = filename but it just came up as a blank subject line in the email... but when I kept playing with it I discovered an alternative that works as I want it to!

Earlier in the code I used an input box to designate what the file name was going to be based on user input. I was able to re-use the myValue entry from that earlier piece:

Code:
    Dim myValue As Variant
    myValue = InputBox("Enter the Month and Year of the report as 'Month - Year'", "Report Month & Year needed", "Month - Year")
    Range("E1").Value = myValue

And I came up with this:

Code:
    With objMailItem
    .To = "zombiemaster@noname.com"
    .CC = "" 
    .Subject = "PALLM Freeze Code report - " & myValue
    .Body = _
    "Attached is the " & myValue & " Freeze Code report." & Chr(10) & Chr(10) & _
    "If you have any questions, let me know." & Chr(10) & Chr(10)
    .Attachments.Add ActiveWorkbook.FullName
    .Display 'Change to Send if you want to just send it.
    End With

I was even able to incorporate it into the email body, which was an added bonus.

Mystery solved, thanks for taking the time to check it out and respond!
~ZM~
:cool:
 
Upvote 0
.
Glad you found something that works for your needs.

There was more to my macro than just the Subject = Filename.


Above that are these lines of code as well :

Code:
Filename = ActiveWorkbook.Name
        If InStr(Filename, ".") > 0 Then
           Filename = Left(Filename, InStr(Filename, ".") - 1)
        End If

That code strips the file extension from the filename, leaving only the filename to paste into the Subject field.


Your method with the textbox allows you to use anything as the Subject.


Cheers.
 
Upvote 0

Forum statistics

Threads
1,214,847
Messages
6,121,911
Members
449,054
Latest member
luca142

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