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