cancel
Showing results for 
Search instead for 
Did you mean: 

Sending Email Notification as HTML

Sterling_Hallfo
Champ in-the-making
Champ in-the-making

Hello,

Is it possible to send an email notification from Workflow as HTML instead of plain text? The need for this is to anchor a link in an email instead of having the URL exposed in the email text. Has anyone done this or used another method?

Thanks,

Sterling

2 REPLIES 2

Josh_Pierre
Champ in-the-making
Champ in-the-making

It sure is Sterling.

All you need to do is write it with correctly formed HTML eg:

<html>
<head>
<title>Email</title>
</head>
<body> 
Test
</body>
</html> 

Sterling_Hallfo
Champ in-the-making
Champ in-the-making

That makes sense. Thank you Josh for the quick response!