VB code to "Send To" Multi addresses

M

muzzas news

I have a line of VB code to send a spreadsheet by e-mail to a recipient. I
have tried modifying this to allow me to send to more than one recipient but
can't get it to work.
Currently I have:
ActiveWorkbook.SendMail Recipients:= "(e-mail address removed)"

Help will be appreciated

Murray
 
G

Guest

hi
see this site. there are 2 good suggestions here for you.

http://www.rondebruin.nl/sendmail.htm
-----Original Message-----
I have a line of VB code to send a spreadsheet by e-mail to a recipient. I
have tried modifying this to allow me to send to more than one recipient but
can't get it to work.
Currently I have:
ActiveWorkbook.SendMail
Recipients:= "(e-mail address removed)"
 
M

Markus Scheible

Hi Murray,

see the Excel help for some help ;o)

cited:

"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."

So simply connect a range with the recipients as follows:

ActiveWorkbook.SendMail Recipients:=Range("A1", "A3")

Or you first read your recipients in an array and conntect
this with the recipients... whatever ;o)


Best

Markus

-----Original Message-----
I have a line of VB code to send a spreadsheet by e-mail to a recipient. I
have tried modifying this to allow me to send to more than one recipient but
can't get it to work.
Currently I have:
ActiveWorkbook.SendMail
Recipients:= "(e-mail address removed)"
 

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