SendMail From specified user

tstevens

New Member
Joined
Sep 1, 2006
Messages
29
Is there a function in "SendMail" that allows me to change the sender? Here is my code that I'm using. This will use the account of whoever is logged on and I want it sent from one default account. I'm not familiar with iMail and would perfer to use SendMail unless it's not possible.
Code:
Dim name As String
    Dim borrower As String
    name = Range("A87")
    borrower = Range("B13")
    ActiveWorkbook.SendMail _
    Recipients:=name, _
    Subject:="Loan Reconciliation for " + borrower
    ActiveWorkbook.Save
    ActiveWorkbook.Close
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
As far as I'm aware SendMail wouldn't allow you to do anything like that.

It's pretty much restricted to specifying Subject and Recipients.

If you want more control over emailing you'll probably need code that's specific to your email client.
 
Upvote 0

Forum statistics

Threads
1,214,926
Messages
6,122,305
Members
449,079
Latest member
juggernaut24

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