Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Change or Remove Outlook "From" field using VBS?

Status
Not open for further replies.

TropicalFred

Technical User
Jun 16, 2003
20
US
Is there any way, using VBS, to change or delete the “From” field in an Outlook 2000 e-mail?

I am sending out a custom e-mail to 400+ people in our company. I developed a VBScript to automate the process and it works great with one exception. I would prefer that the "From" field either show a different address (e.g., "Communications" instead of "jsmith") or not appear at all.

I thought I could just use a line like:

newMail.From = "Communications"
or
newMail.From.Visible = False

but those create unsupported property/method errors.

Any ideas? Thanks.

 
Have you tried this ?
newMail.SentOnBehalfOfName = "Communications"

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top