Reputation: 2818
I am sending newsletter from my web application. I have a problem in designing the mail.
The gmail client displays only one half of the message (the right half here as the mail is in Arabic) as in the below image.
How can I make all the message appear?
Upvotes: 0
Views: 809
Reputation: 1828
The email display space varies from one client to another. For example gmail allocates say 500px size for showing the email when viewed through pc and the rest of space for other tabs. So this display size varies a lot.
Solution:
Place your contents within a table. Create a parent table and set its width to 100% so it occupies the entire allocated space. Within that create another table and give it a size of 500px ( usually you can give a size of 400-600 but not more than that). Inside this second table you post your contents. To make it look good you "center" the table 2 within table 1.
This how an html email will look in Gmail Mobile App if you follow my concept
Upvotes: 1