, ( ), Mandrill. Mailchimp, "" , . 10 000 , , , WYSIWYG, API- python.
, :
python Mandrill Python:
import mandrill
mandrill_client = mandrill.Mandrill(mandrill_api_key)
message = {
'from_email': 'gandolf@email.com',
'from_name': 'Gandolf',
'subject': 'Hello World',
'to': [
{
'email': 'recipient@email.com',
'name': 'recipient_name',
'type': 'to'
}
],
"merge_vars": [
{
"rcpt": "recipient.email@example.com",
"vars": [
{
"name": "merge1",
"content": "merge1 content"
}
]
}
]
}
result = mandrill_client.messages.send_template(template_name="Your Template", message=message)