mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
using timeout parameter within community.general.mail module (#7731)
* using timeout parameter within community.general.mail module * consolidated time-out example within an existing playbook * consolidated time-out example within an existing playbook * Update plugins/modules/mail.py Co-authored-by: Felix Fontein <felix@fontein.de> --------- Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
0b0a302855
commit
916f6f7c87
1 changed files with 2 additions and 1 deletions
|
@ -205,10 +205,11 @@ EXAMPLES = r'''
|
||||||
body: System {{ ansible_hostname }} has been successfully provisioned.
|
body: System {{ ansible_hostname }} has been successfully provisioned.
|
||||||
secure: starttls
|
secure: starttls
|
||||||
|
|
||||||
- name: Sending an e-mail using StartTLS, remote server, custom EHLO
|
- name: Sending an e-mail using StartTLS, remote server, custom EHLO, and timeout of 10 seconds
|
||||||
community.general.mail:
|
community.general.mail:
|
||||||
host: some.smtp.host.tld
|
host: some.smtp.host.tld
|
||||||
port: 25
|
port: 25
|
||||||
|
timeout: 10
|
||||||
ehlohost: my-resolvable-hostname.tld
|
ehlohost: my-resolvable-hostname.tld
|
||||||
to: John Smith <john.smith@example.com>
|
to: John Smith <john.smith@example.com>
|
||||||
subject: Ansible-report
|
subject: Ansible-report
|
||||||
|
|
Loading…
Reference in a new issue