Merge pull request #15729 from civicrm/5.19
[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 <center>
14 <table width="500" border="0" cellpadding="0" cellspacing="0" id="crm-event_receipt" style="font-family: Arial, Verdana, sans-serif; text-align: left;">
15
16 <!-- BEGIN HEADER -->
17 <!-- You can add table row(s) here with logo or other header elements -->
18 <!-- END HEADER -->
19
20 <!-- BEGIN CONTENT -->
21
22 <tr>
23 <td>
24 {assign var="greeting" value="{contact.email_greeting}"}{if $greeting}<p>{$greeting},</p>{/if}
25 <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>
26
27 </td>
28 </tr>
29 </table>
30 <table width="500" style="border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse;">
31
32 <tr>
33 <th {$headerStyle}>
34 {ts}Membership Information{/ts}
35 </th>
36 </tr>
37 <tr>
38 <td {$labelStyle}>
39 {ts}Membership Status{/ts}
40 </td>
41 <td {$valueStyle}>
42 {$membership_status}
43 </td>
44 </tr>
45 {if $mem_start_date}
46 <tr>
47 <td {$labelStyle}>
48 {ts}Membership Start Date{/ts}
49 </td>
50 <td {$valueStyle}>
51 {$mem_start_date|crmDate}
52 </td>
53 </tr>
54 {/if}
55 {if $mem_end_date}
56 <tr>
57 <td {$labelStyle}>
58 {ts}Membership End Date{/ts}
59 </td>
60 <td {$valueStyle}>
61 {$mem_end_date|crmDate}
62 </td>
63 </tr>
64 {/if}
65
66 </table>
67 </center>
68
69 </body>
70 </html>