Multiple Recipients in SendMail Method. HELP!!!

J

John Baker

Hi:

I have been automatically sending an e mail from my Excel for some time, using the
following statement:

ActiveWorkbook.SendMail recipients "(e-mail address removed)", _
etitle

I am not attempting to add another recipient, and am having a difficult time. The "Help"
on sendmail says the following:

"Recipients Required Variant. Specifies the name of the recipient as text, or as an
array of text strings if there are multiple recipients. At least one recipient must be
specified, and all recipients are added as To recipients."

It refers to "an array of text strings", but i cant appear to set up an array that is
acceptable and will work.
I have tried:
ActiveWorkbook.SendMail "(e-mail address removed)", _
etitle

a) ActiveWorkbook.SendMail "(e-mail address removed), (e-mail address removed)", _
etitle
b) ActiveWorkbook.SendMail "(e-mail address removed),""(e-mail address removed)",_
etitle
c)ActiveWorkbook.SendMail "(e-mail address removed) (e-mail address removed)", _
etitle

None of them work! Either the compiler does not like them or Outlook does not..

Can someone tell me the right way to set this up please?

Regards

John Baker
 
D

Daniel Klann

Hi John,

ActiveWorkbook.SendMail Array("(e-mail address removed)", "(e-mail address removed)")

Should work for you.

Regards,
Dan
 
J

John Baker

Dan:

Thank you very much. Its amazing how many times the good folks on this and other
Newsgroups have helped me with something that I was totally stumped on.

Regards

John Baker
 
Joined
Dec 19, 2007
Messages
1
Reaction score
0
ActiveWorkbook.SendMail Array:=("(e-mail address removed)","(e-mail address removed)"), _
Subject:="In House Function Sheet"

gives me the error of

Complie Error Expected: )
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top