Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

the documentation for mail sending ist depricated #95

Closed
mschmermer opened this issue Oct 2, 2023 · 1 comment
Closed

the documentation for mail sending ist depricated #95

mschmermer opened this issue Oct 2, 2023 · 1 comment

Comments

@mschmermer
Copy link

works not:
data = {
'Messages': [
{
"From": {
"Email": "$SENDER_EMAIL",
"Name": "Me"
},
"To": [
{
"Email": "$RECIPIENT_EMAIL",
"Name": "You"
}
],
"Subject": "My first Mailjet Email!",
"TextPart": "Greetings from Mailjet!",
"HTMLPart": "

Dear passenger 1, welcome to <a href="https://www.mailjet.com/">Mailjet!


May the delivery force be with you!"
}
]
}

works:
data = {
'Messages': [
{
"FromEmail": "MAIL",
"FromName": "Me",
"Recipients": [
{
"Email": "MAIL",
"Name": "You"
}
],
"Subject": subject,
"TextPart": text,
"HTMLPart": html
}
]
}

@mschmermer
Copy link
Author

forget to use new api 3.1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant