.Sendmail to Multiple Internal Addresses

J

J.W. Aldridge

Using Ron's code:

Sub Mail_ActiveSheet()


Currently set to send to full email address(es). Need to send to
internal email address names...(whole names only without extensions).
Tried several methods, nothing worked so far....



..SendMail
"(e-mail address removed);[email protected];[email protected]",
_
' "EMail Subject"



WHAT'S NEEDED....

..SendMail "Jeremy Aldridge;Jane Doe;Julie Doe", _
' "EMail Subject"


thanx....
 
T

Tom Ogilvy

.SendMail Array("Jeremy Aldridge","Jane Doe","Julie Doe"), _
"EMail Subject"

If Jeremay Aldridge would work as a single address, then I believe the above
is what you need.
 
D

Dave Peterson

..sendmail array("(e-mail address removed)", _
"(e-mail address removed)", _
"(e-mail address removed)"), _
"email subject"
 
J

J.W. Aldridge

Thank both you guys!

Worked purrfectly!

I'm buying you both Krystal burgers (or White Castle) WITH CHEESE when
I become a millionaire soon.....
 

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