1 # SMTP configuration for sending mail
3 host = 'smtp.gmail.com'
6 user = 'some-user@example.com'
7 password = 'secretpassword'
9 # Email configuration for password reset emails
10 # Be sure to update both html-template AND text-template
11 # nodemailer will send both and the email client will render whichever one is supported
15 # Template to use for HTML-formatted emails
16 # $user$ will be replaced by the username for which the reset was requested
17 # $url$ will be replaced by the password reset confirmation link
21 A password reset was requested for your account on CHANGE ME. You can complete the reset by opening the following link in your browser: <a href="$url$">$url$</a><br>
23 This link will expire in 24 hours.<br>
25 This email address is not monitored for replies. For assistance with password resets, please <a href="http://example.com/contact">contact an administrator</a>.
28 # Template to use for plaintext emails
29 # Same substitutions as the HTML template
33 A password reset was requested for your account on CHANGE ME. You can complete the reset by opening the following link in your browser: $url$
35 This link will expire in 24 hours.
37 This email address is not monitored for replies. For assistance with password resets, please contact an administrator. See http://example.com/contact for contact information.
40 from = "Example Website <website@example.com>"
41 subject = "Password reset request"
43 # Email configuration for account deletion request notifications
51 Account deletion was requested for your account on CHANGE ME. Your account will be automatically deleted in 7 days without any further action from you.
54 This email address is not monitored for replies. For assistance, please <a href="http://example.com/contact">contact an administrator</a>.
60 Account deletion was requested for your account on CHANGE ME. Your account will be automatically deleted in 7 days without any further action from you.
62 This email address is not monitored for replies. For assistance, please contact an administrator. See http://example.com/contact for contact information.
65 from = "Example Website <website@example.com>"
66 subject = "Account deletion request"