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
atulit27atulit27 

Display Checkbox in Visualforce Email Template.

We have a visualforce email template and want to send a checkbox with it. It shows the boolean value as true or false rather than showing the checkbox in the templete. Is there any way to display the checkbox in email template.

Best Answer chosen by Admin (Salesforce Developers) 
Pradeep_NavatarPradeep_Navatar

In case you are using messaging:emailTemplate then you can send email template with checkbox or radio button. There is no visual force component to display checkbox in email template using <apex:inputcheckbox>. You can display it by using HTML syntx. e.g <input name="Yes"/>Yes

All Answers

MikeGillMikeGill

Are you using <apex:inputField>?

 

 

Pradeep_NavatarPradeep_Navatar

In case you are using messaging:emailTemplate then you can send email template with checkbox or radio button. There is no visual force component to display checkbox in email template using <apex:inputcheckbox>. You can display it by using HTML syntx. e.g <input name="Yes"/>Yes

This was selected as the best answer