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

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
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,214,584
Messages
6,120,385
Members
448,956
Latest member
JPav

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