stckme / apphelpers

Commonly needed Python helper libraries to build python (web) apps
https://code.scroll.in
MIT License
3 stars 5 forks source link

Change mail directive prefix from MD_ to SMTP_ #71

Closed shon closed 2 years ago

shon commented 2 years ago

All SMTP config variables are prefixed as MD_ like below

MD_HOST = "localhost"                                                           
MD_PORT = 10000                                                                 
MD_USERNAME = None                                                              
MD_KEY = None        

Reason is that we started Mandrill service for sending SMTP emails. It's time to rename these directives to something generic. I propose SMTP_.

sayanarijit commented 2 years ago

PR: https://github.com/stckme/apphelpers/pull/73

sayanarijit commented 2 years ago

Done in https://github.com/stckme/apphelpers/pull/73