Replies: 1 comment 1 reply
-
Hmm, when using celery the success message is actually misleading because it just means that the task to send the e-mail has been added to the queue... Not sure what is going wrong. Can you please try the following and see if you can reproduce the issue? import smtplib
from email.message import EmailMessage
from email.utils import make_msgid
msg = EmailMessage()
msg.set_content("Hello world.")
msg["Subject"] = "Gramps Web test"
msg["From"] = "..."
msg["To"] = "..."
msg["Message-ID"] = make_msgid()
host = "..."
port = 465
user = "..."
password = "..."
smtp = smtplib.SMTP_SSL(host=host, port=port, timeout=10)
smtp.login(user, password)
smtp.send_message(msg)
smtp.quit() |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, here again!
Info
I am running Gramps Web in a docker after following this guide https://gramps-project.github.io/web/Deployment/#step-1-docker-configuration. I am using this .yml to make it available as a One Click app in CapRover
Issue
When asking for password reset, no email are sent to my Outlook mail box (SMTP, STARTTLS) even it is saying yes:
Any idea if the issue is coming from a wrong docker setup or it could be just me setting up badly my mail information?
Logs
grampscelery
Beta Was this translation helpful? Give feedback.
All reactions