0

I have created a Newsletter template on MailChimp and exported the template. I have also used the CSS Inliner tool to convert the HTML Code.

But How do I use this code to send the email from my outlook account?

Thanks in Advance for your help.

keul
  • 7,673
  • 20
  • 45
R.Patel
  • 3
  • 1
  • 1
  • 3
  • MailChimp is designed for you to use the API. If you want to use it you'll have to make your own webclient or somehow make an IMAP server/converter... – Peter Gordon Jun 30 '16 at 10:35

1 Answers1

1

For this, you can use the import > import as text button in Outlook on the saved HTML file and it should populate into Outlook. (ref)

  1. Open Outlook
  2. Select the Create New-Email icon from the menu bar
  3. From the top navigation menu options choose Insert
  4. Select the Attach File icon
  5. Navigate to the HTML file you want to insert
  6. Select the file (highlight it)
  7. From the Insert Drop Down Menu select Insert as Text

See this answer for more details on Outlook 2016: Getting my HTML into Email

Please keep in mind a couple things:

  1. Outlook strips out all media queries when it sends, effectively removing responsive design
  2. Outlook rewrites your code into Word HTML, which can cause discrepancies in functionality and display
  3. MailChimp usually keeps proprietary code inside of its templates that are not read by other email clients and can cause issues
  4. You need to ensure all CAN-SPAM regulations (physical address, unsubscribe ability) are still displayed inside the email or potentially face fines up to $10,000 per email that violates it.
Community
  • 1
  • 1
Gortonington
  • 3,557
  • 2
  • 18
  • 30
  • Thank you! This has worked, just a few padding and image issues which I will sort out though the code. But got me 80% there. Thanks again :) – R.Patel Jul 01 '16 at 08:22