Merge pull request #485 from dhutty/patch-1
Additional example, not using local_action
This commit is contained in:
commit
8afc822d0c
1 changed files with 7 additions and 0 deletions
|
@ -138,6 +138,13 @@ EXAMPLES = '''
|
||||||
attach="/etc/group /tmp/pavatar2.png"
|
attach="/etc/group /tmp/pavatar2.png"
|
||||||
headers=Reply-To=john@example.com|X-Special="Something or other"
|
headers=Reply-To=john@example.com|X-Special="Something or other"
|
||||||
charset=utf8
|
charset=utf8
|
||||||
|
# Sending an e-mail using the remote machine, not the Ansible controller node
|
||||||
|
- mail:
|
||||||
|
host='localhost'
|
||||||
|
port=25
|
||||||
|
to="John Smith <john.smith@example.com>"
|
||||||
|
subject='Ansible-report'
|
||||||
|
body='System {{ ansible_hostname }} has been successfully provisioned.'
|
||||||
'''
|
'''
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
|
Loading…
Reference in a new issue