Visualforce Email Template

<messaging:emailTemplate subject="Action Required : After Event, Confirm the completion of Customer Meeting"
recipientType="User" relatedToType="Lead">
    <messaging:htmlEmailBody >
        <style>
            table.mainBody {
                border-spacing: 10px;
                border-collapse: collapse;
                border-radius: 25px;
                margin-top: 30px;
            }
            span.highlight {
                font-size: 10.0pt;
                font-family: "Arial", "sans-serif";
                color: #4F81BD;
                font-weight: bold;
            }
            p {
                font-family: "Arial", "sans-serif";
                font-size: 10pt;
                font-weight: normal;
                margin-bottom: 10px;
                margin-left: 40px;
                width: 700px;
                word-wrap: break-word;
            }
        </style>

        <table id="topTableBody" cellpadding="10px" cellspacing="0" class="mainBody">
            <tbody>
                <tr valign="middle">
                    <td>
                        <p>
                            Dear {!relatedTo.LastName},
                        </p>
                        <p>Your body here
                        </p>

                        <p> Please&nbsp;
                            <apex:outputLink value="{!LEFT($Api.Partner_Server_URL_220, FIND( '/services', $Api.Partner_Server_URL_320))}a4N?fcf=00B340000090IWG">Click Here
                            </apex:outputLink> to confirm the attendees.
                        </p>

                        <p>
                            Regards,
                            <br/> SFDC Team
                        </p>
                    </td>

                </tr>
            </tbody>
        </table>
    </messaging:htmlEmailBody>
</messaging:emailTemplate>



Featured

What is Cryptography in salesforce and what are all the algorithms provided by them ?

A). It is a security protocal between two systems. Lets say we are integration two systems without any encrytion mechanism then hackers wil...

Popular