For emails to support the appropriate alignment for right-to-left languages, you need to set the direction property in the CSS of the email, preferably inline. For example:
<div style="direction: rtl;">Your Hebrew text goes here</div>
You can also set it for entire email:
<!DOCTYPE html>
<html dir="rtl" lang="he">
<head>
<meta charset="utf-8">
</head>
<body>
זאת את העזרה ואמנות הגולשות. מיזם למתחילים מה עזה. אם מלא כלכלה בעברית, פיסיקה ומהימנה כלל דת. מה המחשב המלצת פוליטיקה ארץ, אם ביולוגיה אתנולוגיה סוציולוגיה בדף.
</body>
</html>
How to Create RTL Templates
- Create a subscriber list and specify an attribute that is responsible for the subscriber’s language.
- Add subscribers to the list with appropriate language attribute value.
- Create a template by choosing any convenient way in the Content Builder view Past an AMP script is dependent on a language attribute. The script enables RTL alignment regarding the subscriber language attribute value. For example:
%%[ if Language == "ar" then ]%%
<style type="text/css">
div {
direction: rtl
}
</style>
%%[ endif ]%% - Create an email based on the template. The right alignment can be verified by substituting the particular subscriber on the preview stage.