flask-sendmail icon indicating copy to clipboard operation
flask-sendmail copied to clipboard

flask-sendmail on pip is not the lastest

Open dingyaguang117 opened this issue 9 years ago • 9 comments

It's inconvenience to deploy~ Thanks

dingyaguang117 avatar Mar 30 '15 13:03 dingyaguang117

Just ran into this while trying to use the charset parameter...

dequis avatar Jun 17 '15 16:06 dequis

same here. sucks. please fix?

gad2103 avatar Apr 20 '16 22:04 gad2103

Sorry, been out of the country on position, and didn't have much free time. I'll try to get this out soon.

ajford avatar May 02 '16 21:05 ajford

Would be nice to have at least the charset fix...

plaes avatar May 31 '16 08:05 plaes

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? :)

anne17 avatar Jul 13 '17 12:07 anne17

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

digeverything avatar Jan 10 '19 21:01 digeverything

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 avatar May 15 '20 12:05 ncrocfer

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 ? :)

plaes avatar May 18 '20 05:05 plaes

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 :)

ncrocfer avatar May 18 '20 08:05 ncrocfer