emailing questions

UPN

Board Regular
Joined
May 14, 2006
Messages
138
This code is part of a macro i have, that works great. 2 questions, the one i think i know but want to make sure
If I make read receipt FALSE, this will not ask for read receipt RIGHT?

Is there a way that i can place in the subject line the actual file name?


Code:
With oMail
    .To = "ME@cbilling.com"
    .To = Range("B1").Value
    
    .CC = "you@billing.com"
    .CC = Range("B2").Value
    
    .ReadReceiptRequested = True
    .ReadReceiptRequested = Range("B3").Value
    
    .Subject = "File for " & Format$(Date, "mmm dd, yyy")
    .Subject = Range("B4").Value
    
    .Body = "Here is the shpping log"
    .Body = Range("B5").Value
    
    .Sensitivity = 3                'olConfidential = 3
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Sorry

Sorry wbout this, when I meant filename, I meant the filename of the attachment

I want this to be in the subject line
 
Upvote 0

Forum statistics

Threads
1,215,067
Messages
6,122,949
Members
449,095
Latest member
nmaske

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