mirror of
https://github.com/fosrl/pangolin.git
synced 2026-05-07 05:09:18 -05:00
Unable to send invitation email to user #227
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @zulredfrog on GitHub (Apr 9, 2025).
I have configured the email part in the configuration file with following configuration:
When I tried to send invite email to user, I encountered this error:
I also tried to use SMTP port 465 with
smtp_secure: trueconfig but still encountered the same error. I've tested the SMTP host with cURL test through both ports (465 & 587, SSL & TLS), seems working and the email was sent and received.I saw OP in issue #203 was able to make it work using port 587, so I'm not sure why it's not working and wonder if anyone had encountered this similar issue before.
@miloschwartz commented on GitHub (Apr 9, 2025):
Hey there has been some discussion about using Resend in our Discord server. Looks like it's been solved there. Take a look at: https://discord.com/channels/1325658630518865980/1351266041564762122
@zulredfrog commented on GitHub (Apr 10, 2025):
Hey! Thanks for the guidance. I've followed the recommended setup from Resend based on the Discord thread and able to make it work.
I got it working by using port 2465 and set
smtp_secure: true:Thanks again!