Configure email settings
This commit is contained in:
parent
b16f2585c7
commit
377053797d
3 changed files with 20 additions and 7 deletions
|
|
@ -9,14 +9,14 @@
|
|||
# Mail Server #
|
||||
###############
|
||||
|
||||
# mail.backend: 'smtp' # Use dummy if you want to disable email entirely
|
||||
mail.host: 'smtp'
|
||||
# mail.port: 25
|
||||
# mail.username: ''
|
||||
# mail.password: ''
|
||||
# mail.use-tls: false
|
||||
mail.backend: 'smtp'
|
||||
mail.host: '{{ smtp_server }}'
|
||||
mail.port: {{ smtp_port }}
|
||||
mail.username: '{{ smtp_username }}'
|
||||
mail.password: '{{ smtp_password }}'
|
||||
mail.use-tls: true
|
||||
# The email address to send on behalf of
|
||||
# mail.from: 'root@localhost'
|
||||
mail.from: '{{ smtp_username }}'
|
||||
|
||||
# If you'd like to configure email replies, enable this.
|
||||
# mail.enable-replies: true
|
||||
|
|
|
|||
Reference in a new issue