wyb
2021-05-11 49ce087bd2a34a150597e1cc1da157af242c0b6d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Pcb.Common.Config
{
    /// <summary>
    /// 发邮件模板
    /// </summary>
  public  class EmailTipTemplate
    {
      /// <summary>
      /// 金融需求模板
      /// </summary>
      public const string FinanceManagerTemplate= " <div style=\"font-family:'Microsoft YaHei'\">"
                               + "     <p>{0}有金融需求,请处理</p>"
                               + "     <p><span style=\"color:red\">{8}</span>在<span style=\"color:red\">{0}</span>提交金融需求,具体如下:</p>"
                               + "     <p>"
                               + "         <table cellspacing=\"0\" cellpadding=\"0\" border=\"1\" style=\"width:90%;height:auto;text-align:center\">"
                               + "             <tr><th>数据来源</th><th>公司名称</th><th>联系人</th><th>联系电话</th><th>融资金额(万元)</th><th>融资方式</th><th>创建时间</th></tr>"
                               + "             <tr><td>网站前台</td><td>{2}</td><td>{3}</td><td>{4}</td><td>{5}</td><td>{6}</td><td>{7}</td></tr>"
                               + "         </table>"
                               + "     </p>"
                               + "   <p ><a href=\"http://admin.jiepei.com\">点击前往TP系统处理</a></p>"
                               + " </div>";
      /// <summary>
      /// 自营订单模板
      /// </summary>
      public const string SelfMallOrderTemplate = "<table  style='width: 90%; table-layout: fixed; border: 1px solid #e6e6e6;'>"
          +"  <tbody>"
     +"      <tr >"
     +"          <th  style='width: 10%; text-align: left;'>单号/时间</th>"
     +"          <th  style='width: 10%;'>状态</th>"
     +"          <th  style='width: 10%; text-align: left;'>绑定交易员</th>"
     +"          <th  style='text-align: left;width: 70%;'>订单信息</th>"
     +"      </tr>"
     +"      <tr >"
     +"           <td style='text-align: left;'>"
     +"               {0}<br>"
     +"               <div style='margin-top: 5px'>{1}</div>"
     +"           </td>"
     +"           <td style='text-align: center;'>"
     +"               <span class='待审核'>{2}</span>"
     +"           </td>"
     +"           <td style='text-align: left; padding-right: 10px !important;'>{3}</td>"
     +"           <td style='text-align: left; padding-right: 10px !important;'>"
     +"               公司: {4} 企业用户: [{5}] <span class='phoneTag5767'>{6}</span>"
     +"               <div class='tip' style='margin-top: 5px; text-align: left; padding-right: 10px !important;' data-hasqtip='10' >"
     +"                   <span style='padding: 2px 5px; color: #428bca'>[{7}]</span>  采购数量(吨):{8} &nbsp; 采购金额(元): {9} 提货时间:{10} - {11}"
     +"               </div>"
     +"           </td>"
     +"       </tr>       "              
    +"        </tbody>"
     +"  </table>";
 
 
    }
}