I have a Microsoft Access database. There is a facility to email a list of people from the database. I read every record, put all the email addresses into a variable (varEmail) and send the variable to the Email program with this code:
DoCmd.SendObject acSendNoObject, , , varEmail
The default Email program will open and place all the addresses into the "To" line. The user may then complete the emial message and send.
This procedure works well with Outlook, Outlook Express and Eudora. However with Thunderbird, Access returns and error message that there were "Too many message recipients". There are in fact about 150 addresses. I can cut and paste the entire list into Thunderbird's address line with no problem, it just will not accept that many addresses from Access.
Any ideas?
DoCmd.SendObject acSendNoObject, , , varEmail
The default Email program will open and place all the addresses into the "To" line. The user may then complete the emial message and send.
This procedure works well with Outlook, Outlook Express and Eudora. However with Thunderbird, Access returns and error message that there were "Too many message recipients". There are in fact about 150 addresses. I can cut and paste the entire list into Thunderbird's address line with no problem, it just will not accept that many addresses from Access.
Any ideas?