Skip to main content
Best answer

Formatting align right-to-left in "send email" event

  • January 14, 2025
  • 1 reply
  • 16 views

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.

 

Best answer by pranayshinde

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>
View original
Did this topic help you find an answer to your question?
This post has been closed for comments. Please create a new post if you need help or have a question about this topic.

1 reply

Forum|alt.badge.img+5
  • New
  • 108 replies
  • Answer
  • January 14, 2025

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>