FavoriteMathew Andresen (Umpqua Dairy Products Company) asked in #VisualforceFeb 2, 2015, 6:47 PMrendering rich text fields in a visualforce emailHi,I'm trying to send visualforce email template, but it has rich text fields in it. Those rich text fields keep showing all the html tags instead of the actual formatting.Any ideas?3 answersSortSort by DateSort by Most HelpfulSort by DateLoad more comments...Accepted AnswerKaranraj Sankaranarayanan (Auraforce Technologies Inc)Feb 2, 2015, 6:52 PMSet the attribute escape=false to the output text tag<apex:outputText value="{!richTextfield__c}" escape="false" /> Add a commentWrite an answer...BoldItalicUnderlineStrikethroughBulleted ListNumbered ListAdd linkCode blockInsert imageAttach filesLink URLCancelSave0/9000Reply
Accepted AnswerKaranraj Sankaranarayanan (Auraforce Technologies Inc)Feb 2, 2015, 6:52 PMSet the attribute escape=false to the output text tag<apex:outputText value="{!richTextfield__c}" escape="false" />