Fix #925
[KisSync.git] / conf / example / email.toml
blob155872dd9cd114382095661585c66e9a2b7d9044
1 # SMTP configuration for sending mail
2 [smtp]
3 host = 'smtp.gmail.com'
4 port = 465
5 secure = true
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
12 [password-reset]
13 enabled = true
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
18 html-template = """
19 Hi $user$,<br>
20 <br>
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>
22 <br>
23 This link will expire in 24 hours.<br>
24 <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>.
26 """
28 # Template to use for plaintext emails
29 # Same substitutions as the HTML template
30 text-template = """
31 Hi $user$,
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.
38 """
40 from = "Example Website <website@example.com>"
41 subject = "Password reset request"
43 # Email configuration for account deletion request notifications
44 [delete-account]
45 enabled = true
47 html-template = """
48 Hi $user$,
49 <br>
50 <br>
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.
52 <br>
53 <br>
54 This email address is not monitored for replies.  For assistance, please <a href="http://example.com/contact">contact an administrator</a>.
55 """
57 text-template = """
58 Hi $user$,
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.
63 """
65 from = "Example Website <website@example.com>"
66 subject = "Account deletion request"