Flask-Mailing is the ultimate solution for sending emails asynchronously in Flask applications. With its extensive features such as support for multiple email providers, file attachments, customizable templates, and encryption, Flask-Mailing makes email communication effortless and efficient.
RuntimeWarning: coroutine 'Mail.send_message' was never awaited mailer.send_message(msg)
using async is fine, no errors, the mail goes trough,
but everything else in my app is sync, and I don't want to fall in "what color is your function ?"
is there any way to NOT use async ?
whitout async I get:
using async is fine, no errors, the mail goes trough, but everything else in my app is sync, and I don't want to fall in "what color is your function ?"