Send HTML Email with Outlook

Hi,
I’d like to send an email with my browser on my PC (run browser), with outlook.

First i have to use “cordova.plugins.email” because the EmailComposer send me a available = undefined.

Then, i can open my outlook email with text but it’s not formatted in HTML, it keeps the html Tags :frowning:

  let emailObj = {
      to: ['xxx@test.fr'],
      cc: [
      ],
      bcc: [
      ],
      attachments: [
      ],
      subject: 'My subject',
      body: '<p>my text body</p>',
      isHtml: true
    };

I have not done this but I would try using “isHTML” instead of “isHtml”. The documentation for the plugin is inconsistent and reading the source leads me to believe you need it capitalized.

Andy

Hi Andy, same result, it doesn’t display in HTML