Answer the question
In order to leave comments, you need to log in
Daily mailing of letters (~300) with an attachment - what?
Sending e-mails to your database with an attached PDF file.
The ideal would be software that works through SMTP. Service is an option.
Working, free, moderately fast.
Answer the question
In order to leave comments, you need to log in
powershell + smtprelay + taskscheduler:
$emails = import-csv c:\temp\emailaddresses.csv
foreach ($email in $emails)
{
send-mailmessage -from $email.from -to $email.to -attachments ...
}
...
I use SPECTral Personal SMTP Server of some old version for something like this (sending out ~100 emails every couple of years). Slow, sad, sometimes with glitches, but it works. I think any smtp server will do.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question