|
-
July 30th, 1999, 09:39 AM
#1
MAPI to send Email to multiple recipients
I am using the MAPI controls to send email to multiple recipients, but I can only get it to one reipient. I have tried commas between recipients and everything and it doesn't work. This is the code I am using:
MAPISession1.UserName = "USERNAME"
MAPISession1.Password = "PASSWORD"
MAPISession1.SignOn
Screen.MousePointer = vbHourglass
With MAPIMessages1
.MsgIndex = -1
.RecipDisplayName = "JON DOE"
.MsgSubject = "TEST"
.MsgNoteText = "THIS IS A TEST"
.SessionID = MAPISession1.SessionID
.Send
End With
Screen.MousePointer = vbNormal
MAPISession1.SignOff
End
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|