Christineeve
Programmer
I have this code in production and it's working fine. Except, I send out so many emails that I'm starting to crash out of my applicaton because my email box is full. One reason is that I have this code:
What this is doing is first sending the email to Kjones, then a copy to Sandy, then a blind copy to memememe. I would like it to send all three emails on the To line only. Not on the CC or BCC line.
How do I separate the emails within the To portion of the send code? I tried semi colon that doesn't work.
Code:
DoCmd.SendObject , "", "", "Kjones@blahblah.com ", " SandyooU812@hotmail.com", , "memememe@hotmail.com", myTableFileName & " is created!", , False
What this is doing is first sending the email to Kjones, then a copy to Sandy, then a blind copy to memememe. I would like it to send all three emails on the To line only. Not on the CC or BCC line.
How do I separate the emails within the To portion of the send code? I tried semi colon that doesn't work.