I'm trying to send email coupon codes to a list of different people. The idea is that they:
- Go to the landing page
- Input their email
- Receive an email with a coupon code for a coffee shop
We're using Mailchimp, and I've been racking my brain trying to figure out how to do this. I've only done design and some JavaScript development, so I'm not even sure where to begin. I was thinking something along the lines of:
- Collect all the submitted emails in a
csv
file - Purchase the bulk of coupon codes
- Use PHP (SendGrid or Swiftmailer or something) to match up the list of codes with the emails and send them out.
Any thoughts on the best way to do this?