I created an invoicing module for our club. Each time 150 invoices are created. Now we want to send then via mail. I succeeded in it by using:
DoCmd.SendObject acSendReport, "Name of report", "pdf", EmailLid, , , "Factuur WSVBRU", "Bijgevoegd vindt U uw factuur voor WSVBRU; Gaarne binnen 14 dagen betalen"
This results in 150 emails in my email program; But now we have to send them away bij sending each email by opening and clicking on send email. Is there a way to send them directly from ACCESS?
The application finally runs in a runtime environment.
DoCmd.SendObject acSendReport, "Name of report", "pdf", EmailLid, , , "Factuur WSVBRU", "Bijgevoegd vindt U uw factuur voor WSVBRU; Gaarne binnen 14 dagen betalen"
This results in 150 emails in my email program; But now we have to send them away bij sending each email by opening and clicking on send email. Is there a way to send them directly from ACCESS?
The application finally runs in a runtime environment.