diff --git a/notification/mail.py b/notification/mail.py index a1ec44087dd..ae33c5ca4ca 100644 --- a/notification/mail.py +++ b/notification/mail.py @@ -62,7 +62,6 @@ options: subject: description: - The subject of the email being sent. - aliases: [ msg ] required: true body: description: @@ -115,7 +114,7 @@ options: EXAMPLES = ''' # Example playbook sending mail to root -- local_action: mail msg='System {{ ansible_hostname }} has been successfully provisioned.' +- local_action: mail subject='System {{ ansible_hostname }} has been successfully provisioned.' # Sending an e-mail using Gmail SMTP servers - local_action: mail @@ -125,7 +124,7 @@ EXAMPLES = ''' password='mysecret' to="John Smith " subject='Ansible-report' - msg='System {{ ansible_hostname }} has been successfully provisioned.' + body='System {{ ansible_hostname }} has been successfully provisioned.' # Send e-mail to a bunch of users, attaching files - local_action: mail