コード例 #1
0
 public bool SendEmail(string to, string htmlTemplate, string subject)
 {
     try
     {
         _ent.CORE_SendEmails(to, string.Empty, string.Empty, subject, htmlTemplate, "HTML", "HIGH");
         return(true);
     }
     catch (Exception ex)
     {
         return(false);
     }
 }