David Lord
David Lord
That's a totally different issue, but the setting is `MAIL_DEFAULT_SENDER`.
You must be inside a context to access `current_app`. Either you're in a request or a CLI command, in which case this is already true, or you push one manually...
I can't reproduce this issue, sending is successful with the given sender.
Flask-Mail is now part of the Pallets Community Ecosystem. Pallets is the open source organization that maintains Flask; Pallets-Eco enables community maintenance of Flask extensions. If you are interested in...
I can't reproduce this issue.
You're probably passing Flask-Login's `current_user` as the sender. This doesn't make sense, not does converting it to a string, which wouldn't be a valid email anyway. Pass `user.email` (or whatever...
For now, this is outside the scope of this extension. Flask-Mail supports SMTP. Most services that offer mail sending APIs also provide SMTP interfaces. There are other mail extensions that...
The docs are now hosted at https://flask-mail.readthedocs.io. I've deleted the pythonhosted.org docs for Flask-Mail, but the lower case flask-mail ones remain up. I've reported that as a bug to Warehouse:...
A body with unicode characters seems to be supported correctly, no `.encode` call needed.
Flask-Mail is now part of the Pallets Community Ecosystem. Pallets is the open source organization that maintains Flask; Pallets-Eco enables community maintenance of Flask extensions. If you are interested in...