Merge pull request #24117 from civicrm/5.52
[civicrm-core.git] / xml / templates / message_templates / contribution_dupalert_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 <p>{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}</p>
24 <p>{ts}The information provided matched multiple existing database records based on the configured Duplicate Matching Rules for your site.{/ts}</p>
25 </td>
26 </tr>
27 <tr>
28 <td>
29 <table style="border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;">
30 <tr>
31 <td {$labelStyle}>
32 {ts}Organization Name{/ts}
33 </td>
34 <td {$valueStyle}>
35 {$onBehalfName}
36 </td>
37 </tr>
38 <tr>
39 <td {$labelStyle}>
40 {ts}Organization Email{/ts}
41 </td>
42 <td {$valueStyle}>
43 {$onBehalfEmail}
44 </td>
45 </tr>
46 <tr>
47 <td {$labelStyle}>
48 {ts}Organization Contact ID{/ts}
49 </td>
50 <td {$valueStyle}>
51 {$onBehalfID}
52 </td>
53 </tr>
54 </table>
55 </td>
56 </tr>
57 <tr>
58 <td>
59 <p>{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to "Contacts >> Find and Merge Duplicate Contacts". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}</p>
60 </td>
61 </tr>
62 {if $receiptMessage}
63 <tr>
64 <td>
65 <table style="border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;">
66 <tr>
67 <th {$headerStyle}>
68 {ts}Copy of Contribution Receipt{/ts}
69 </th>
70 </tr>
71 <tr>
72 <td colspan="2" {$valueStyle}>
73 {* FIXME: the below is most probably not HTML-ised *}
74 {$receiptMessage}
75 </td>
76 </tr>
77 </table>
78 </td>
79 </tr>
80 {/if}
81 </table>
82 </body>
83 </html>