Merge pull request #23012 from colemanw/fixSearchAfformFilter
[civicrm-core.git] / xml / templates / message_templates / membership_autorenew_cancelled_html.tpl
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
5 <title></title>
6 </head>
7 <body>
8
9 {capture assign=headerStyle}colspan="2" style="text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;"{/capture}
10 {capture assign=labelStyle }style="padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;"{/capture}
11 {capture assign=valueStyle }style="padding: 4px; border-bottom: 1px solid #999;"{/capture}
12
13 <table id="crm-event_receipt" style="font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;">
14
15 <!-- BEGIN HEADER -->
16 <!-- You can add table row(s) here with logo or other header elements -->
17 <!-- END HEADER -->
18
19 <!-- BEGIN CONTENT -->
20
21 <tr>
22 <td>
23 {assign var="greeting" value="{contact.email_greeting}"}{if $greeting}<p>{$greeting},</p>{/if}
24 <p>{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}</p>
25
26 </td>
27 </tr>
28 </table>
29 <table style="width:100%; max-width:500px; border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;">
30
31 <tr>
32 <th {$headerStyle}>
33 {ts}Membership Information{/ts}
34 </th>
35 </tr>
36 <tr>
37 <td {$labelStyle}>
38 {ts}Membership Status{/ts}
39 </td>
40 <td {$valueStyle}>
41 {$membership_status}
42 </td>
43 </tr>
44 {if $mem_start_date}
45 <tr>
46 <td {$labelStyle}>
47 {ts}Membership Start Date{/ts}
48 </td>
49 <td {$valueStyle}>
50 {$mem_start_date|crmDate}
51 </td>
52 </tr>
53 {/if}
54 {if $mem_end_date}
55 <tr>
56 <td {$labelStyle}>
57 {ts}Membership End Date{/ts}
58 </td>
59 <td {$valueStyle}>
60 {$mem_end_date|crmDate}
61 </td>
62 </tr>
63 {/if}
64
65 </table>
66
67 </body>
68 </html>