Email Report - custom from address

Wondering if the FROM address and name can be customized for email reports?

Also can one place any custom HTML styling in the body of the Email? Hi

The FROM address cannot be changed when using the built in Email Node. However, you can use your own SendGrid account and the SendGrid Node. This will allow you to send using whatever the FROM address is that’s associated with your SendGrid account.

The Email Node does support HTML content with custom styling. The following is default HTML that’s provided when you add a new Email Node.

<!doctype html>
<html>
  <head>
    <title></title>
    <meta name="viewport" content="width=device-width" />
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  </head>
  <body>
    <div>My custom body or {{data.emailBody}}</div>
  </body>
</html>

You can change that to whatever you want, or add inline CSS to change the style:

<body style="background-color:red;">
...
</body>

can we specify the From: name as well as the From: address?