Created
January 2, 2017 01:06
-
-
Save subzero79/b38c780443f714159b624957fdd1f4d6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
templates: | |
GMail: | |
email: | |
from: '{{ secrets.email.from }}' | |
to: '{{ secrets.email.to }}' | |
smtp_host: smtp.gmail.com | |
smtp_port: 587 | |
smtp_username: '{{ secrets.email.smtp_username }}' | |
smtp_password: '{{ secrets.email.smtp_password }}' | |
smtp_tls: yes | |
html: yes | |
file_template: task/html | |
templates: | |
GMail: | |
notify_task: | |
to: | |
- email: | |
to: '{{ secrets.email.to }}' | |
from: '{{ secrets.email.from }}' | |
smtp_host: smtp.gmail.com | |
smtp_port: 587 | |
smtp_username: '{{ secrets.email.smtp_username }}' | |
smtp_password: '{{ secrets.email.smtp_password }}' | |
smtp_tls: yes | |
html: yes | |
file_template: task/html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment