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
venkatesh 44venkatesh 44 

email templets

what is the main differnce between this

 

Text

html with letter head

custom without letter head

visualforce

 

 

where we use all please can any one tel me with an exapmle

 

jnegijnegi

Text - Is used when you want to send simple text in an email like
Hi,

A new record has been created.

Thanks,
ABC

There would not be any header and footer in the email.

==========================
html with letter head:- Is used when you want to use email templated with predefined header and footer.
Also you can use the bind variable into it. like

Hello {!contact.LastName}

A new case#{!case.casenumber} has been created.

Thanks,
{$User.Name}

============================
custom without letter head: Same as above without the letter head.

============================
visualforce:- This is more technical, wherein you can use custom component to fill the bind variable.

For more information, please go through the below link:

https://help.salesforce.com/HTViewHelpDoc?id=admin_emailtemplates.htm&language=en_US


Thanks,
Jagmohan