flask-sendmail
flask-sendmail copied to clipboard
flask-sendmail on pip is not the lastest
It's inconvenience to deploy~ Thanks
Just ran into this while trying to use the charset parameter...
same here. sucks. please fix?
Sorry, been out of the country on position, and didn't have much free time. I'll try to get this out soon.
Would be nice to have at least the charset fix...
I also ran into the charset-problem and had to switch to smtplib to get my code working. The version on pip is from 2012. Any plans on fixing this soon? :)
Work around it by directly fetching the commit that fixed the issue My requirements.txt now includes the following line
git+git://github.com/ajford/flask-sendmail.git@65f41c0
Hi,
@ajford made a big work to allow us using sendmail in Flask applications, but this project seems to be unmaintained for several years. No new release has been made and the only solution to support Python 3 is to directly reference the commit hash in our requirements.
Because I also use it in one of my project and I want a cleaner solution I decided to deploy a new version named flask-sendmail-ng
supporting Python 3 :
pip install flask-sendmail-ng
It's a drop-in replacement, so nothing to change on your side (ie import flask_sendmail
will still work).
Code is here : https://github.com/ncrocfer/flask-sendmail-ng
Hi,
@ajford made a big work to allow us using sendmail in Flask applications, but this project seems to be unmaintained for several years. No new release has been made and the only solution to support Python 3 is to directly reference the commit hash in our requirements.
Because I also use it in one of my project and I want a cleaner solution I decided to deploy a new version named
flask-sendmail-ng
supporting Python 3 :pip install flask-sendmail-ng
It's a drop-in replacement, so nothing to change on your side (ie import
flask_sendmail
will still work).Code is here : https://github.com/ncrocfer/flask-sendmail-ng
@ncrocfer Can you also pick up my patch from pull request #10 ? :)
Hi @plaes ,
I don't have write access on this repo, you can make a new PR on the new one I will test it :)