Add new line “\n” character to Ansible set_fact variable

114 views
Skip to first unread message

Shifa Shaikh

unread,
Jun 3, 2020, 2:12:25 PM6/3/20
to Ansible Project

How can I add new line characters to Ansible variable mailbody. This mailbody variable is used for mail module's body attribute.


I tried the below from suggestions but none of them works. 


1. 
  - set_fact:
       mailbody: "{{ mailbody | default('') + 'PROFILE_NAME:' +  PROFILE_NAME ~ '\n\nSERVER_NAME:' + SERVER_NAME ~ '\n\nNODE_NAME:' +  NODE_NAME ~ '\n\n\n\n' }}"
2.
      mailbody: "{{ mailbody | default('') + 'PROFILE_NAME:' +  PROFILE_NAME ~}} {{ 'SERVER_NAME:' + SERVER_NAME ~ }}\n\n{{'NODE_NAME:' +  NODE_NAME ~ }}\n\n\n\n"
3.
 mailbody: | 
     "{{ mailbody | default('') + 'PROFILE_NAME:' +  PROFILE_NAME ~}}"
     "{{ 'SERVER_NAME:' + SERVER_NAME ~ }}"
     "{{'NODE_NAME:' +  NODE_NAME ~ }}"
In the mail body i see '\n' instead of the new line charecter. 
Can you please suggest ?


Dick Visser

unread,
Jun 3, 2020, 2:19:10 PM6/3/20
to ansible...@googlegroups.com
I won't comment on whatever it is you're trying to do, but in any case you need to use double quotes around the newlines 

--
You received this message because you are subscribed to the Google Groups "Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ansible-proje...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/c9a4818e-dab2-4ad8-8d6c-c477e8915193%40googlegroups.com.
--
Sent from a mobile device - please excuse the brevity, spelling and punctuation.

Shifa Shaikh

unread,
Jun 3, 2020, 4:57:48 PM6/3/20
to Ansible Project
@Dick VIsser Hi, 

Upon your suggestion, I tried something like this but it too does not work.

   - set_fact:

       mailbody
: "{{ mailbody | default('') + 'PROFILE_NAME:' +  PROFILE_NAME ~ \"\n\n\"'SERVER_NAME:' + SERVER_NAME ~ \"\n\n\"'NODE_NAME:' +  NODE_NAME ~ \"\n\n\n\n\" }}"

Can someone please suggest?

On Wednesday, June 3, 2020 at 11:49:10 PM UTC+5:30, Dick Visser wrote:
I won't comment on whatever it is you're trying to do, but in any case you need to use double quotes around the newlines 
On Wed, 3 Jun 2020 at 20:12, Shifa Shaikh <shif...@gmail.com> wrote:

How can I add new line characters to Ansible variable mailbody. This mailbody variable is used for mail module's body attribute.


I tried the below from suggestions but none of them works. 


1. 
  - set_fact:
       mailbody: "{{ mailbody | default('') + 'PROFILE_NAME:' +  PROFILE_NAME ~ '\n\nSERVER_NAME:' + SERVER_NAME ~ '\n\nNODE_NAME:' +  NODE_NAME ~ '\n\n\n\n' }}"
2.
      mailbody: "{{ mailbody | default('') + 'PROFILE_NAME:' +  PROFILE_NAME ~}} {{ 'SERVER_NAME:' + SERVER_NAME ~ }}\n\n{{'NODE_NAME:' +  NODE_NAME ~ }}\n\n\n\n"
3.
 mailbody: | 
     "{{ mailbody | default('') + 'PROFILE_NAME:' +  PROFILE_NAME ~}}"
     "{{ 'SERVER_NAME:' + SERVER_NAME ~ }}"
     "{{'NODE_NAME:' +  NODE_NAME ~ }}"
In the mail body i see '\n' instead of the new line charecter. 
Can you please suggest ?


--
You received this message because you are subscribed to the Google Groups "Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ansible...@googlegroups.com.

Shifa Shaikh

unread,
Jun 4, 2020, 12:41:31 AM6/4/20
to Ansible Project
I tried all of these but have no clue to a solution. 

mailbody: "{{ mailbody | default('') + 'PROFILE_NAME:' +  PROFILE_NAME + "\n" + 'SERVER_NAME:' + SERVER_NAME + "\n" + 'NODE_NAME:' +  NODE_NAME + "\n\n\n\n\" }}"

mailbody: "{{ mailbody | default('') + 'PROFILE_NAME:' +  PROFILE_NAME + '\n' + 'SERVER_NAME:' + SERVER_NAME + '\n' + 'NODE_NAME:' +  NODE_NAME + '\n\n\n\n\' }}"

mailbody: "{{ mailbody | default('') + 'PROFILE_NAME:' +  PROFILE_NAME ~ }} \n + {{ 'SERVER_NAME:' + SERVER_NAME ~ }} + \n + {{ 'NODE_NAME:' +  NODE_NAME ~ }} \n\n\n\n\"

Stefan Hornburg (Racke)

unread,
Jun 4, 2020, 1:01:41 AM6/4/20
to ansible...@googlegroups.com
On 6/4/20 6:41 AM, Shifa Shaikh wrote:
> I tried all of these but have no clue to a solution. 
>
> mailbody: "{{ mailbody | default('') + 'PROFILE_NAME:' +  PROFILE_NAME + "\n" + 'SERVER_NAME:' + SERVER_NAME + "\n" +
> 'NODE_NAME:' +  NODE_NAME + "\n\n\n\n\" }}"
>
> mailbody: "{{ mailbody | default('') + 'PROFILE_NAME:' +  PROFILE_NAME + '\n' + 'SERVER_NAME:' + SERVER_NAME + '\n' +
> 'NODE_NAME:' +  NODE_NAME + '\n\n\n\n\' }}"
>
> mailbody: "{{ mailbody | default('') + 'PROFILE_NAME:' +  PROFILE_NAME ~ }} \n + {{ 'SERVER_NAME:' + SERVER_NAME ~ }} +
> \n + {{ 'NODE_NAME:' +  NODE_NAME ~ }} \n\n\n\n\"
>
>

Use multiline YAML: https://yaml-multiline.info/

Regards
Racke
> <https://groups.google.com/d/msgid/ansible-project/c9a4818e-dab2-4ad8-8d6c-c477e8915193%40googlegroups.com?utm_medium=email&utm_source=footer>.
>
> --
> Sent from a mobile device - please excuse the brevity, spelling and punctuation.
>
> --
> You received this message because you are subscribed to the Google Groups "Ansible Project" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to
> ansible-proje...@googlegroups.com <mailto:ansible-proje...@googlegroups.com>.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/ansible-project/1515dc41-ed08-4ade-b09f-455a922497c8%40googlegroups.com
> <https://groups.google.com/d/msgid/ansible-project/1515dc41-ed08-4ade-b09f-455a922497c8%40googlegroups.com?utm_medium=email&utm_source=footer>.


--
Ecommerce and Linux consulting + Perl and web application programming.
Debian and Sympa administration. Provisioning with Ansible.

signature.asc

Shifa Shaikh

unread,
Jun 4, 2020, 1:21:56 AM6/4/20
to Ansible Project
Stephan Hi, 

The article does not discuss newline inside parenthesis `{{` inside a variable definition. That is where I have no clue.

Stefan Hornburg (Racke)

unread,
Jun 4, 2020, 2:08:23 AM6/4/20
to ansible...@googlegroups.com
On 6/4/20 7:21 AM, Shifa Shaikh wrote:
> Stephan Hi, 
>
> The article does not discuss newline inside parenthesis `{{` inside a variable definition. That is where I have no clue.


Hello Shifa,

parenthesis are fine inside multiline YAML.
> <https://groups.google.com/d/msgid/ansible-project/c9a4818e-dab2-4ad8-8d6c-c477e8915193%40googlegroups.com?utm_medium=email&utm_source=footer
> <https://groups.google.com/d/msgid/ansible-project/c9a4818e-dab2-4ad8-8d6c-c477e8915193%40googlegroups.com?utm_medium=email&utm_source=footer>>.
>
> >
> >         --
> >         Sent from a mobile device - please excuse the brevity, spelling and punctuation.
> >
> > --
> > You received this message because you are subscribed to the Google Groups "Ansible Project" group.
> > To unsubscribe from this group and stop receiving emails from it, send an email to
> > ansible...@googlegroups.com <javascript:> <mailto:ansible-proje...@googlegroups.com <javascript:>>.
> <https://groups.google.com/d/msgid/ansible-project/1515dc41-ed08-4ade-b09f-455a922497c8%40googlegroups.com?utm_medium=email&utm_source=footer
> <https://groups.google.com/d/msgid/ansible-project/1515dc41-ed08-4ade-b09f-455a922497c8%40googlegroups.com?utm_medium=email&utm_source=footer>>.
>
>
>
> --
> Ecommerce and Linux consulting + Perl and web application programming.
> Debian and Sympa administration. Provisioning with Ansible.
>
> --
> You received this message because you are subscribed to the Google Groups "Ansible Project" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to
> ansible-proje...@googlegroups.com <mailto:ansible-proje...@googlegroups.com>.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/ansible-project/ea570673-e541-4207-81c8-84d4353b8572%40googlegroups.com
> <https://groups.google.com/d/msgid/ansible-project/ea570673-e541-4207-81c8-84d4353b8572%40googlegroups.com?utm_medium=email&utm_source=footer>.
signature.asc

Shifa Shaikh

unread,
Jun 4, 2020, 2:54:35 AM6/4/20
to ansible...@googlegroups.com
I tried multiline too as below, but that too fails

       mailbody: |
         "{{ mailbody | default('') + 'PROFILE_NAME: ' + PROFILE_NAME }}" + "\n"
         "{{ 'SERVER_NAME: ' + SERVER_NAME }}"

Output:
['"PROFILE_NAME: SPROD01" + "[file://\\n"\n]\\n"\n"SERVER_NAME: SPROD01SRV01"\n', '"PROFILE_NAME: SPROD02" + "[file://\\n"\n]\\n"\n"SERVER_NAME: SPROD02SRV02"\n']

Also tried:


       mailbody: |
         "{{ mailbody | default('') + 'PROFILE_NAME: ' + PROFILE_NAME }}"
         "{{ 'SERVER_NAME: ' + SERVER_NAME }}"

and

       mailbody: |
         "{{ mailbody | default('') + 'PROFILE_NAME: ' + PROFILE_NAME }}" + "\\n"
         "{{ 'SERVER_NAME: ' + SERVER_NAME }}"

To unsubscribe from this group and stop receiving emails from it, send an email to ansible-proje...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/061717dc-af0d-2dd1-8b5a-ba5f4e34ac0f%40linuxia.de.

Stefan Hornburg (Racke)

unread,
Jun 4, 2020, 3:56:56 AM6/4/20
to ansible...@googlegroups.com
On 6/4/20 8:54 AM, Shifa Shaikh wrote:
> I tried multiline too as below, but that too fails
>
>        mailbody: |
>          "{{ mailbody | default('') + 'PROFILE_NAME: ' + PROFILE_NAME }}" + "\n"
>          "{{ 'SERVER_NAME: ' + SERVER_NAME }}"
>

Please try:

mailbody: |
{{ mailbody | default('') }}PROFILE_NAME: {{ PROFILE_NAME }}
SERVER_NAME: + {{ SERVER_NAME }}

Regards
Racke

>

> Output:
> ['"PROFILE_NAME: SPROD01" + "[file://\\n"\n]\\n"\n"SERVER_NAME: SPROD01SRV01"\n', '"PROFILE_NAME: SPROD02" +
> "[file://\\n"\n]\\n"\n"SERVER_NAME: SPROD02SRV02"\n']
>
> Also tried:
>
>        mailbody: |
>          "{{ mailbody | default('') + 'PROFILE_NAME: ' + PROFILE_NAME }}"
>          "{{ 'SERVER_NAME: ' + SERVER_NAME }}"
>
> and
>
>        mailbody: |
>          "{{ mailbody | default('') + 'PROFILE_NAME: ' + PROFILE_NAME }}" + "\\n"
>          "{{ 'SERVER_NAME: ' + SERVER_NAME }}"
>
> >     ansible...@googlegroups.com <mailto:ansible...@googlegroups.com>.
> >     >             To view this discussion on the web visit
> >     >            
> >     https://groups.google.com/d/msgid/ansible-project/c9a4818e-dab2-4ad8-8d6c-c477e8915193%40googlegroups.com
> >     <https://groups.google.com/d/msgid/ansible-project/c9a4818e-dab2-4ad8-8d6c-c477e8915193%40googlegroups.com>
> >     >            
> >   
>  <https://groups.google.com/d/msgid/ansible-project/c9a4818e-dab2-4ad8-8d6c-c477e8915193%40googlegroups.com?utm_medium=email&utm_source=footer
> >   
>  <https://groups.google.com/d/msgid/ansible-project/c9a4818e-dab2-4ad8-8d6c-c477e8915193%40googlegroups.com?utm_medium=email&utm_source=footer>>.
> >
> >     >
> >     >         --
> >     >         Sent from a mobile device - please excuse the brevity, spelling and punctuation.
> >     >
> >     > --
> >     > You received this message because you are subscribed to the Google Groups "Ansible Project" group.
> >     > To unsubscribe from this group and stop receiving emails from it, send an email to
> >     > ansible...@googlegroups.com <mailto:ansible...@googlegroups.com> <javascript:>
> <mailto:ansible-proje...@googlegroups.com <mailto:ansible-project%2Bunsu...@googlegroups.com>
> <javascript:>>.
> >     > To view this discussion on the web visit
> >     > https://groups.google.com/d/msgid/ansible-project/1515dc41-ed08-4ade-b09f-455a922497c8%40googlegroups.com
> >     <https://groups.google.com/d/msgid/ansible-project/1515dc41-ed08-4ade-b09f-455a922497c8%40googlegroups.com>
> >     >
> >   
>  <https://groups.google.com/d/msgid/ansible-project/1515dc41-ed08-4ade-b09f-455a922497c8%40googlegroups.com?utm_medium=email&utm_source=footer
> >   
>  <https://groups.google.com/d/msgid/ansible-project/1515dc41-ed08-4ade-b09f-455a922497c8%40googlegroups.com?utm_medium=email&utm_source=footer>>.
> >
> >
> >
> >     --
> >     Ecommerce and Linux consulting + Perl and web application programming.
> >     Debian and Sympa administration. Provisioning with Ansible.
> >
> > --
> > You received this message because you are subscribed to the Google Groups "Ansible Project" group.
> > To unsubscribe from this group and stop receiving emails from it, send an email to
> > ansible-proje...@googlegroups.com <mailto:ansible-project%2Bunsu...@googlegroups.com>
> <mailto:ansible-proje...@googlegroups.com <mailto:ansible-project%2Bunsu...@googlegroups.com>>.
> > To view this discussion on the web visit
> > https://groups.google.com/d/msgid/ansible-project/ea570673-e541-4207-81c8-84d4353b8572%40googlegroups.com
> >
> <https://groups.google.com/d/msgid/ansible-project/ea570673-e541-4207-81c8-84d4353b8572%40googlegroups.com?utm_medium=email&utm_source=footer>.
>
>
> --
> Ecommerce and Linux consulting + Perl and web application programming.
> Debian and Sympa administration. Provisioning with Ansible.
>
> --
> You received this message because you are subscribed to the Google Groups "Ansible Project" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to
> ansible-proje...@googlegroups.com <mailto:ansible-project%2Bunsu...@googlegroups.com>.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/ansible-project/061717dc-af0d-2dd1-8b5a-ba5f4e34ac0f%40linuxia.de.
>
> --
> You received this message because you are subscribed to the Google Groups "Ansible Project" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to
> ansible-proje...@googlegroups.com <mailto:ansible-proje...@googlegroups.com>.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/ansible-project/CAJtox0mkNhH0F-gqzw0gtzt7rLGEJW4DiPaA_d_Kbg8iVuJqdw%40mail.gmail.com
> <https://groups.google.com/d/msgid/ansible-project/CAJtox0mkNhH0F-gqzw0gtzt7rLGEJW4DiPaA_d_Kbg8iVuJqdw%40mail.gmail.com?utm_medium=email&utm_source=footer>.
signature.asc

Shifa Shaikh

unread,
Jun 4, 2020, 4:50:38 AM6/4/20
to Ansible Project
I see the problem is different than the direction we are debugging. 

When i write the variable to a file i see new lines but when the variable  assigned to email body it does not interpolate the new line instead prints '\n'

       - copy
            content
: "{{ mailbody }}"
            dest
: /tmp/write.log

         

    - name: Send mail
      mail
:
          host
: localhost:
          port
: 25
          subject
: :Hi"
          body: "
{{ mailbody }}"
          from: m...@myshop.com
          to: y...@yourmail.com

Can you please suggest?
>     <javascript:>>.
>     >     > To view this discussion on the web visit
>     >     > https://groups.google.com/d/msgid/ansible-project/1515dc41-ed08-4ade-b09f-455a922497c8%40googlegroups.com
>     >     <https://groups.google.com/d/msgid/ansible-project/1515dc41-ed08-4ade-b09f-455a922497c8%40googlegroups.com>
>     >     >
>     >   
>      <https://groups.google.com/d/msgid/ansible-project/1515dc41-ed08-4ade-b09f-455a922497c8%40googlegroups.com?utm_medium=email&utm_source=footer
>     >   
>      <https://groups.google.com/d/msgid/ansible-project/1515dc41-ed08-4ade-b09f-455a922497c8%40googlegroups.com?utm_medium=email&utm_source=footer>>.
>     >
>     >
>     >
>     >     --
>     >     Ecommerce and Linux consulting + Perl and web application programming.
>     >     Debian and Sympa administration. Provisioning with Ansible.
>     >
>     > --
>     > You received this message because you are subscribed to the Google Groups "Ansible Project" group.
>     > To unsubscribe from this group and stop receiving emails from it, send an email to
>     > To view this discussion on the web visit
>     > https://groups.google.com/d/msgid/ansible-project/ea570673-e541-4207-81c8-84d4353b8572%40googlegroups.com
>     >
>     <https://groups.google.com/d/msgid/ansible-project/ea570673-e541-4207-81c8-84d4353b8572%40googlegroups.com?utm_medium=email&utm_source=footer>.
>
>
>     --
>     Ecommerce and Linux consulting + Perl and web application programming.
>     Debian and Sympa administration. Provisioning with Ansible.
>
>     --
>     You received this message because you are subscribed to the Google Groups "Ansible Project" group.
>     To unsubscribe from this group and stop receiving emails from it, send an email to
>     To view this discussion on the web visit
>     https://groups.google.com/d/msgid/ansible-project/061717dc-af0d-2dd1-8b5a-ba5f4e34ac0f%40linuxia.de.
>
> --
> You received this message because you are subscribed to the Google Groups "Ansible Project" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to

Dick Visser

unread,
Jun 4, 2020, 6:07:26 AM6/4/20
to ansible...@googlegroups.com
On Thu, 4 Jun 2020 at 10:50, Shifa Shaikh <shif...@gmail.com> wrote:
>
> I see the problem is different than the direction we are debugging.
>
> When i write the variable to a file i see new lines but when the variable assigned to email body it does not interpolate the new line instead prints '\n'
>
> - copy
> content: "{{ mailbody }}"
> dest: /tmp/write.log
>
>
>
> - name: Send mail
> mail:
> host: localhost:

There is an extra ':' here?

> port: 25
> subject: :Hi"

There is an extra ':' here?

> body: "{{ mailbody }}"
> from: m...@myshop.com
> to: y...@yourmail.com


> Can you please suggest?

You already put two errors in your task which prevent it from running correctly.
So in that light, i'm wondering if your actual task does, in fact,
contain more differences than what you've posted here.

Also, "prints '\n'" indicates that you're echoing? and not mailing?
>> > <mailto:ansible-proje...@googlegroups.com <mailto:ansible-project%2Bunsu...@googlegroups.com>
>> > <javascript:>>.
>> > > > To view this discussion on the web visit
>> > > > https://groups.google.com/d/msgid/ansible-project/1515dc41-ed08-4ade-b09f-455a922497c8%40googlegroups.com
>> > > <https://groups.google.com/d/msgid/ansible-project/1515dc41-ed08-4ade-b09f-455a922497c8%40googlegroups.com>
>> > > >
>> > >
>> > <https://groups.google.com/d/msgid/ansible-project/1515dc41-ed08-4ade-b09f-455a922497c8%40googlegroups.com?utm_medium=email&utm_source=footer
>> > >
>> > <https://groups.google.com/d/msgid/ansible-project/1515dc41-ed08-4ade-b09f-455a922497c8%40googlegroups.com?utm_medium=email&utm_source=footer>>.
>> > >
>> > >
>> > >
>> > > --
>> > > Ecommerce and Linux consulting + Perl and web application programming.
>> > > Debian and Sympa administration. Provisioning with Ansible.
>> > >
>> > > --
>> > > You received this message because you are subscribed to the Google Groups "Ansible Project" group.
>> > > To unsubscribe from this group and stop receiving emails from it, send an email to
>> > > ansible...@googlegroups.com <mailto:ansible-project%2Bunsu...@googlegroups.com>
>> > <mailto:ansible-proje...@googlegroups.com <mailto:ansible-project%2Bunsu...@googlegroups.com>>.
>> > > To view this discussion on the web visit
>> > > https://groups.google.com/d/msgid/ansible-project/ea570673-e541-4207-81c8-84d4353b8572%40googlegroups.com
>> > >
>> > <https://groups.google.com/d/msgid/ansible-project/ea570673-e541-4207-81c8-84d4353b8572%40googlegroups.com?utm_medium=email&utm_source=footer>.
>> >
>> >
>> > --
>> > Ecommerce and Linux consulting + Perl and web application programming.
>> > Debian and Sympa administration. Provisioning with Ansible.
>> >
>> > --
>> > You received this message because you are subscribed to the Google Groups "Ansible Project" group.
>> > To unsubscribe from this group and stop receiving emails from it, send an email to
>> > ansible...@googlegroups.com <mailto:ansible-project%2Bunsu...@googlegroups.com>.
>> > To view this discussion on the web visit
>> > https://groups.google.com/d/msgid/ansible-project/061717dc-af0d-2dd1-8b5a-ba5f4e34ac0f%40linuxia.de.
>> >
>> > --
>> > You received this message because you are subscribed to the Google Groups "Ansible Project" group.
>> > To unsubscribe from this group and stop receiving emails from it, send an email to
>> > ansible...@googlegroups.com <mailto:ansible-proje...@googlegroups.com>.
>> > To view this discussion on the web visit
>> > https://groups.google.com/d/msgid/ansible-project/CAJtox0mkNhH0F-gqzw0gtzt7rLGEJW4DiPaA_d_Kbg8iVuJqdw%40mail.gmail.com
>> > <https://groups.google.com/d/msgid/ansible-project/CAJtox0mkNhH0F-gqzw0gtzt7rLGEJW4DiPaA_d_Kbg8iVuJqdw%40mail.gmail.com?utm_medium=email&utm_source=footer>.
>>
>>
>> --
>> Ecommerce and Linux consulting + Perl and web application programming.
>> Debian and Sympa administration. Provisioning with Ansible.
>>
> --
> You received this message because you are subscribed to the Google Groups "Ansible Project" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to ansible-proje...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/0157de47-d257-426f-adb3-69128b1734da%40googlegroups.com.



--
Dick Visser
Trust & Identity Service Operations Manager
GÉANT

Shifa Shaikh

unread,
Jun 4, 2020, 8:06:36 AM6/4/20
to ansible...@googlegroups.com
@Dick Hi, 

That was a typo the problem remains writing to a file is all good with newlines while writing to email body does not translate "\n" as new line !! Could this be a bug ?

Shifa Shaikh

unread,
Jun 4, 2020, 8:07:40 AM6/4/20
to ansible...@googlegroups.com
Dick Hi, 

That was a typo; however, the problem remains!! Writing to a file is all good with newline while writing to email body does not translate "\n" as new line !! Could this be a bug? Kindly suggest.  

On Thu, Jun 4, 2020 at 3:37 PM Dick Visser <dick....@geant.org> wrote:

Dick Visser

unread,
Jun 4, 2020, 8:26:29 AM6/4/20
to ansible...@googlegroups.com
On Thu, 4 Jun 2020 at 14:07, Shifa Shaikh <shif...@gmail.com> wrote:
>
> Dick Hi,
>
> That was a typo; however, the problem remains!! Writing to a file is all good with newline while writing to email body does not translate "\n" as new line !! Could this be a bug? Kindly suggest.

Just tried it out and it works fine here.
Can you show again the complete playbook? Including the task where the
body is generated?
That must be the issue I think.
Reply all
Reply to author
Forward
0 new messages