W
Wasp18h ago
Kynetix

Anyone used Mailjet before?

I've used Mailjet & Mailgun in other projects, and was wondering if anyone's used either (instead of Sendgrid) with Wasp.
1 Reply
kapa.ai
kapa.ai18h ago
Hi @Kynetix. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave: ---------------------- Based on the knowledge sources provided, Wasp officially supports several email providers, but Mailjet is not explicitly mentioned among them. The supported providers are: - Dummy (for development only) - SMTP - Mailgun - SendGrid While Mailjet isn't specifically mentioned, you could potentially use it through the SMTP provider option since many transactional email providers (including Mailgun and SendGrid) can work via SMTP. As noted in the documentation: "Many transactional email providers (e.g. Mailgun, SendGrid but also others) can also use SMTP, so you can use them as well." Sending Emails - Providers For Mailgun specifically, Wasp does have direct integration. You would set it up like this:
app Example {
...
emailSender: {
provider: Mailgun,
}
}
app Example {
...
emailSender: {
provider: Mailgun,
}
}
And then add your Mailgun API key and domain to your .env.server file. Using the Mailgun Provider If you want to use Mailjet, you would likely need to use the SMTP option and configure it with Mailjet's SMTP settings in your .env.server file. The knowledge sources don't contain any specific examples of users who have used Mailjet with Wasp. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ---------------------- Sorry @Kynetix, I seem to be having a bit of trouble. Don't worry though, I've pinged my support and they will try to fix me up! :technologist: Perhaps try again in 15mins?

Did you find this page helpful?