how can I feed people into the newsletters email group. I have a webform on my site that sends an email with a specific subject line for new newsletter subscription.
Hi @nostahl, maybe you can read this documentation first.
https://docs.erpnext.com/docs/v13/user/manual/en/CRM/newsletter
I know how to make newsletters. I know how to make email groups. I asked how I can pipe them directly into an email group
Hi @nostahl i assume you have some webform, for people to enter their own email right?
Then in that webform / server you need communicate to the Frappe website.
One way is using API… the API for adding email to the email group is:
POST
https://your_url/api/method/frappe.email.doctype.email_group.email_group.add_subscribers
param
{
"name" : "one_of_your_email_group",
"email_list" : "johndoe@mail.com"
}
If you success to send the API, your Total Subsrcibers on Email Group will increase.
1 Like