The default HTML value of the new V12 rental notification topic going to the customer upon a rental contract completion ( Email.Templates.AeRentalMailerV12  ) can be found here:


<div style="text-align: center;">

    <span style="font-size: 24px;">

        <strong>Welcome to the {{StoreName}} Family!</strong>

    </span>

    <br />

</div>

<br />

Thank you for renting your instrument from {{StoreName}}! Your order will be processed within 1 to 2 business days. You will receive a confirmation e-mail at that time.

<br />

<h2>Details About Your Order</h2>

<table style="width: 100%;">

    <tbody>

        <tr>

            <td>Your Name:</td>

            <td>{{CustomerName}}</td>

        </tr>

        {{#IF StudentName}}

        <tr>

            <td>Your Student's Name:</td>

            <td>{{StudentName}}</td>

        </tr>

        {{/IF}}

        <tr>

            <td>Address:</td>

            <td>{{CustomerAddress1}}</td>

            {{#IF CustomerAddress2}}

            <td>, {{CustomerAddress2}}</td>

            {{/IF}}

        </tr>

        <tr>

            <td>Phone:</td>

            <td>{{CustomerPhone}}</td>

        </tr>

        <tr>

            <td>School:</td>

            <td>{{School}}</td>

        </tr>

        <tr>

            <td>District:</td>

            <td>{{District}}</td>

        </tr>

        <tr>

            <td>Instrument:</td>

            <td>{{Instrument}}</td>

        </tr>

        {{#IF DeliveryOption}}

        <tr>

            <td>Delivery Option:</td>

            <td>{{DeliveryOption}}</td>

        </tr>

        {{/IF}}

        {{#IF DeliveryDate}}

        <tr>

            <td>Delivery Date:</td>

            <td>{{DeliveryDate}}</td>

        </tr>

        {{/IF}}

        <tr>

            <td>Rental Notes:</td>

            {{#IF RentalNotes}}

            <td>{{RentalNotes}}</td>

            {{#ELSE}}

            <td>N/A</td>

            {{/ELSE}}

            {{/IF}}

        </tr>

    </tbody>

</table>

<br />  Chosen Accessories: 

{{#EACH Accessories AS Accessory}}

{{#IF Accessory}}

<br />  {{Accessory}}

{{/IF}}

{{/EACH}}

<br />  Chosen Maintenance Options: 

{{#EACH MaintenanceOptions AS MaintenanceOption}}

{{#IF MaintenanceOption}}

<br />  {{MaintenanceOption}}

{{/IF}}

{{/EACH}}