Hey
Am after a bit of help. I've created a flow that is taking data from forms and issuing an email. That works fine.
My issue is that when the email is sent (using send email v2) to any gmail account the html is stripped and it's shown as plain text. I've copied code from a basic mailchimp template email to see if it's just my code but it still strips the html. The email when sent to outlook is showing fine. [Edit: this happens when sent to other clients other than outlook/exchange]
Any ideas why that might be happening?
This is the very basic html test
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<title>Test Email Sample</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0 " />
<style>
<!--- CSS code (if any) --->
</style>
</head>
<body>
<strong>This is text</strong>
</body>
</html>
[Edit: Fixed! I used the SMTP function instead]