Hi, I have set required configurations in application.conf as below:
play.mailer {
host=smtp.gmail.com
port=465
ssl=true
tls=false
user="[email protected]"
password = "****"
debug=true
mock=false
}
While sending some emails I need to override default sender's mail id(which was set in application.conf), it is still sending email from "[email protected]" rather than sending from "[email protected]".
Is there any way to overwrite the default sender email id?