A question related to sending personalized emails using API.
I need advice on how to implement this better.
General task description:
- Weekly updates for the users in a forum
- Once a week to send personalized emails to users
- The email should contain individual content for each user.
- The list of the updated topics that a user is subscribed to. (depending on the user activity)
- The email for each user will differ
- Contact info
- Topics list (One user can have two topics, and another user can have 15 topics)
- Other similar lists…
- How better to implement this?
- Initially planned solution:
- Create an HTML body of the email for each user
- Send using the message_add API v1 method: API Examples Using message_add
- Initially planned solution:
Questions:
- Is there a similar method in the API v3
- I found the create-a-new-message Create a message
- but I don’t see the “html” parameter
- Any other alternative solutions? How better to implement this?