Node Red Email Delimiter for replys

HI,

Using a mustache template for HTML and PlainText I'm sending an email using the built in email.

All working fine; I want to add a reply to delimiter so when someone replies they only add new contents and not edit in line.

I added this just after the body tag but it shows up in the email and ruins the look.
I removed all the contents of the template it would be too much.

<!DOCTYPE html>
<html>
<head>
</head>
<body>
###- Please type your reply above this line -###
</body>
</html>

tia
Harry

not sure quite what you are trying to do - but did you try \n for delimiter in plain text ?

I ended up adding it in the body and hid it with css. It show when some one replies to the email

I phrase the email until I reach the delimiter

<style>
.abtl {
  position: absolute;
  top: -30px;
}
</style>
<div class="abtl">###- Please type your reply above this line -###</div>

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.