Bappy
Bappy

Reputation: 641

Bulk email with multiple attachment using SMTP

I need a program that will be used to send email using SMTP from a local machine. I need to send about 2000 emails.

The emails addresses are located in a MS Excel document with unique ID numbers. The attachments are in a separate folder with unique ID numbers same as the excel folder. Every recipient will receive the same email with different attachment according to the ID number.

Is there any free or low cost program available out there that will achieve the goal?

If not, what is the best and quickest way to write a program like this?

Example of MS Excel Data:

DWEL1859 [email protected]

DSYD1514 [email protected]

DSYD1738 [email protected]

DNSW2736 [email protected]

DPRE2510 [email protected]

Example of zip file names:

DNSW2736.zip

DPRE2510.zip

DSYD1514.zip

DSYD1738.zip

DWEL1859.zip

Upvotes: 2

Views: 1186

Answers (1)

Ivan Velichko
Ivan Velichko

Reputation: 6719

Use PHPMailer with couple of any DB server (i.e. MySQL) and PHP script containing some trivial logic. Write me on email (see accaunt) if you will need help within realization.

Upvotes: 1

Related Questions