When I use this code, an Outlook Message Window appears, fills in some Address stuff and leaves it to the user to add text and eventually press SEND:
DoCmd.SendObject , , acFormatRTF, Me.strEmail.Value, , , "Email Subject", "", True
What can I do to provoke some kind of Mass Mailing (Automating the SEND-Button?)? Is it possible to DoCmd.SendObject without any further User Action? To send several seperated Emails with one Click? (Not using the CC or BCC fields and ONE Email)
DoCmd.SendObject , , acFormatRTF, Me.strEmail.Value, , , "Email Subject", "", True
What can I do to provoke some kind of Mass Mailing (Automating the SEND-Button?)? Is it possible to DoCmd.SendObject without any further User Action? To send several seperated Emails with one Click? (Not using the CC or BCC fields and ONE Email)