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