Read a csv file & send bulk dynamical emails through a simple web interface.
This simple php script lets you send templated emails in bulk based on a CSV file. The recipients' addresses and the values of the dynamic fields are read from a CSV file. It works with all CSV formats as long as every row is translated in an email and every dynamic field is containted within its own column.
CSV file:
firstname,lastname,email,dummy_column
John,Doe,johndoe@some-domain.com,0
Bob,Doe,bobdoe@other-domain.com,3
This tool should not be publicly available as it allows bulk emailing and has no authentication built in. It's not written with security in mind, so putting it in a public place is a great way to get your server hacked and blacklisted. You should at least put it behind basic http authentication.
git clone --recursive git@github.com:marcocox/csv2mail.git- Duplicate
config.template.phptoconfig.phpand insert your SMTP credentials in that file. - Browse to the correct address to access the web interface and get started.


