1
0
Fork 0
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:
Aditya Putta 2023-12-20 00:50:02 -06:00 committed by GitHub
parent 0b0a302855
commit 916f6f7c87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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