Skip to main content

Hi! Is there a way to format the values in the body of automated emails to show right-to-left? When pressing CTRL + SHIFT to switch the direction in the body section, it doesn’t affect the outcome in the email sent. 

There is no need to change the direction of the letters in each word, only to align the paragraph to start on the right side.

 

In the "Send Email" action, set the Body Type to HTML instead of plain text and use the dir="rtl" attribute in the <html> or <p> tag. For example:

<html dir="rtl"> <body>    <p>random text</p>  </body></html>

Reply