You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are sending e-mail through your Send API v3.1 (https://api.mailjet.com/v3.1/send) using Java Client. We have a mailbox in mailjet in which we want to receive an e-mail and we post them to our application by Parse API. When we send e-mail we set replyTo address to:
<MAILJET_EMAIL_ID>+<SOME_ID>@parse-in1.mailjet.com. What we observe that MAILJET_EMAIL_ID contains upper/lower case letters, number and special characters like -, but when the recipient receives an e-mail replyTo address is all lowercase. So when the recipient replies the mail doesn't go to our mailbox and no endpoint is fired. When I manually fix MAILJET_EMAIL_ID to properly cases and sent e-mail than I can observe that mail is in our mailjet mailbox and endpoint is fired.
The text was updated successfully, but these errors were encountered:
@kira4ka Quick partial solution to the problem is verifying your own domain(sub-domain) and provide custom mail address with lower cases: https://dev.mailjet.com/email/guides/parse-api/
It won't solve the problem if you use <SOME_ID> mix cases there but it will solve problem that your endpoint is not fired.
@patryk-marcin-zielinski, thank you for the quick work around, but in our case the endpoint is fired. But <SOME_ID> is encrypted and then encoded with base64. To work well our endpoint needs to decode and then decrypt the string.
When this part is set to lowercase it become impossible to decode it back to then decrypt, as we are getting "Bad base 64" error.
We are sending e-mail through your Send API v3.1 (https://api.mailjet.com/v3.1/send) using Java Client. We have a mailbox in mailjet in which we want to receive an e-mail and we post them to our application by Parse API. When we send e-mail we set replyTo address to:
<MAILJET_EMAIL_ID>+<SOME_ID>@parse-in1.mailjet.com. What we observe that MAILJET_EMAIL_ID contains upper/lower case letters, number and special characters like
-
, but when the recipient receives an e-mail replyTo address is all lowercase. So when the recipient replies the mail doesn't go to our mailbox and no endpoint is fired. When I manually fix MAILJET_EMAIL_ID to properly cases and sent e-mail than I can observe that mail is in our mailjet mailbox and endpoint is fired.The text was updated successfully, but these errors were encountered: