N
N
nizulko2016-07-08 15:49:00
Mail server
nizulko, 2016-07-08 15:49:00

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

2 answer(s)
A
akelsey, 2016-07-08
@akelsey

powershell + smtprelay + taskscheduler:
$emails = import-csv c:\temp\emailaddresses.csv
foreach ($email in $emails)
{
send-mailmessage -from $email.from -to $email.to -attachments ...
}
...

G
Gleb Gryadk.in, 2016-08-26
@Gryadk_in

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 question

Ask a Question

731 491 924 answers to any question