Open Nishi1 opened 4 years ago
I'm trying to work through the same thing, I think. I'd like to make a POST
request to https://xxx.api.mailchimp.com/3.0/automations/xxx/emails/xxx/queue
. Even though this sends a specific email from a campaign to a specific user, all the language is different.
This seems to work for me with Gibbon:
# first, add the user to the list
gibbon.lists(list_id).members.create(body: {
email_address: email_address_from_form,
status: "subscribed"
})
# next, send the campaign email
gibbon.automations(automation_id).emails(email_id).queue.create(body: {
email_address: email_address_form_form
})
I am able to send emails to all users using gibbon.campaigns(campaign_id).actions.send.create Can somebody tell me how to send custom created email campaign to some specific user email addresses?