function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Nikhil Singhal 22Nikhil Singhal 22 

Rich Text Area fields do not display correctly in Visualforce email template

I have an email template that I built as a visualforce template. In my template. I am using rich TextArea field where user can write text in any formate(i.e. It can have bullet points or paragraphs). But when templates fetch the value from VF component, it converts the whole field value in single paragraph. 
For Example : if below is my field value

ABC XYZ:

• Text of Point 1
• Text of Point 2
• Text of Point 3

Another paragraph with few lines:

• Line 1
• Line 2


It converts the whole field value like below, which does not looks good while reading :

ABC XYZ:• Text of Point 1• Text of Point 2• Text of Point 3Another paragraph with few lines:• Line 1• Line 2

Is there any way to keep the format of the field to as it is?