Skip to content
Snippets Groups Projects
Commit 7a438bbc authored by Ravi Tripathi's avatar Ravi Tripathi
Browse files

Adding a new variable to define the from address for subscription email

parent 045fc847
No related branches found
No related tags found
2 merge requests!147Merge previous default branch feat-cod-rmq into main,!141Adding a new variable to define the from address for subscription email
......@@ -27,7 +27,7 @@ def mail_list_subscription(ch, method, properties, body):
fullname = msg["fullname"]
email = msg["email"]
mail_list_admin = rcfg.Sender
mail_list_admin = rcfg.Sender_subscription
mail_list = rcfg.Mail_list
mail_list_bcc = rcfg.Mail_list_bcc
server = rcfg.Mail_server
......
......@@ -25,6 +25,7 @@ db_path = ".agent_db"
Mail_server = 'localhost'
Admin_email = 'root@localhost'
Sender = 'ROOT@LOCALHOST'
Sender_subscription = 'SUBSCRIBE_EMAIL@LOCALHOST'
Sender_alias = 'Services'
Subject = 'New User Account'
Info_url = 'https://www.google.com'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment