Skip to content

Commit

Permalink
fix template
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusandra committed Oct 25, 2024
1 parent 230df08 commit 90fd457
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions posthog/cdp/templates/mailjet/template_mailjet.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,17 +170,17 @@
'Messages': [
{
'From': {
'Email': inputs.email.from,
'Email': email.from,
'Name': ''
},
'To': [
{
'Email': inputs.email.to,
'Email': email.to,
'Name': ''
}
],
'Subject': inputs.email.subject,
'HTMLPart': inputs.email.html
'Subject': email.subject,
'HTMLPart': email.html
}
]
}
Expand Down

0 comments on commit 90fd457

Please sign in to comment.