A mail service which has dynamic subscriber lists

Status
Not open for further replies.

forumall

Member
Messages
39
Reaction score
2
Points
8
Does anyone know what mailing service I can use which will allow dynamic subscriber lists.

So let's say I have a webpage at: www.example.com/emails.php

That page has a bunch of emails which is updated automatically from a database.

When i got to send an email to everyone on that list, the subscriber list updates the subscriber list with all the emails on the page.

It needs to remove any emails that are no longer in that list as well.

What would you recommend?

Thanks!
 

essellar

Community Advocate
Community Support
Messages
3,295
Reaction score
227
Points
63
Every service I know of has, for billing and batching reasons, a requirement that you maintain the subscriber list on their service. They also provide an API that you can use to manage the subscriber list (add/remove subscribers in bulk, etc.) and that will allow users to manage their own subscriptions and notify your code. For some of that kind of functionality, you would need to be running a VPS, but the basic list management APIs are usually easy enough to use with an HTTP POST request, a JSON payload (which you can create from your database) and a cron to run the list maintenance job.
 
Status
Not open for further replies.
Top