I am testing how to send an e-mail. I have copied the code below from the help files:
Sub CreateHTMLMail()
\'Creates a new e-mail item and modifies its prope
Try this:
toString = "me@email.com;you@email.com;them@email.com"
With OutMail
.To = toString
.Subject = "Hello Friends"
.Body = "Here is the email body"
.Send
End With
This of course works with multiple recipients. For a single recipient, just do this:
toString = "oneguy@gmail.com"
And don't forget the .Send to actually make your email send.