-
Notifications
You must be signed in to change notification settings - Fork 24
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
Send an email inside a Edge function #45
Comments
Use something like mailgun or another actual SMTP API. Using cloud function ips for email sending is a good way to get flagged as spam. Probably many other reasons not to do this with a serverless function too. |
Hi Machael, |
Yes, bad practice in both. If supabase hasn't blocked, they probably will at some point. As far as being possible in JS vs Dart, it's all about the libraries. JS/Typescript typically has more than dart, but dart is catching up. |
@nuno84 Maybe we should accept this as the proper solution... |
Hi,
I can send an email using SMTP in Typescript.
However I would prefer to use Dart on the Edge functions.
I tried to use the mailer library but it doesn't work. issue
What is the best way to achieve this?
I can't seem to find a solution in the web, which is weird because I thought it would be a usual feature.
Am I overlooking something?
Thank you for any tips
The text was updated successfully, but these errors were encountered: