Email

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

In MS Outlook, you can specify who an email is from. Is there a way to use
VBA to send an Email, where you can also specify the:

From:
To:
CC:
BCC:

When creating the email?

Thanks
 
In
NeilGel said:
Hi,

In MS Outlook, you can specify who an email is from. Is there a way
to use VBA to send an Email, where you can also specify the:

From:
To:
CC:
BCC:

When creating the email?

You can use DoCmd.SendObject, or you can use Outlook automation. Both
methods will allow you to set To:, CC:, and BCC: recipients for the
message. You can't specify From: when using SendObject -- it will use
your default e-mail account. You may be able to do it when automating
Outlook; I don't know.
 
Back
Top