Can I use simplenews to just manage an opt-in/opt-out setting for each user?
I want to send the actual emails separately (using the Amazon SES SDK).
But I want a drupal module that manages a user opt-out profile field and allows any user to unsubscribe from the next newsletter by clicking a personalized link in the newsletter.
When I need to send a newsletter, I'd export the list of applicable email addresses and user keys (for unsubscribine) with an SQL query and send the emails.
Comments
Comment #1
berdirSure, that should be possible. Nothing requires you to actually send out newsletters and you can export the lists as many times as you want.
Comment #2
sudev.pradhan commentedHi,
Yes you could use the simplenews module for just saving the users who have opt-in to newsletters in your website. All users who have subscribed to newsletters gets stored in simplenews_subscriber table which you can later export to get the email ids.
Thanks,
Sudev