コード例 #1
0
ファイル: EmailService.cs プロジェクト: amittal09/Integration
 public void Send(EmailTemplate template, params string[] recipients)
 {
     if (template == null)
     {
         throw new ArgumentNullException("template");
     }
     if (recipients == null)
     {
         throw new ArgumentNullException("recipients");
     }
     using (MailMessage mailMessage = new MailMessage())
     {
         using (SmtpClient smtpClient = new SmtpClient())
         {
             mailMessage.Subject    = template.Subject;
             mailMessage.Body       = template.GetBody();
             mailMessage.IsBodyHtml = template.IsHtml;
             if (template.MailPriority.HasValue)
             {
                 mailMessage.Priority = template.MailPriority.Value;
             }
             string[] strArrays = recipients;
             for (int i = 0; i < (int)strArrays.Length; i++)
             {
                 string str = strArrays[i];
                 if (!string.IsNullOrWhiteSpace(str))
                 {
                     mailMessage.To.Add(str.Trim());
                 }
             }
             object attachments = template.Attachments;
             if (attachments == null)
             {
                 attachments = new Attachment[0];
             }
             foreach (Attachment attachment in (IEnumerable <Attachment>)attachments)
             {
                 mailMessage.Attachments.Add(attachment);
             }
             smtpClient.Send(mailMessage);
         }
     }
 }
コード例 #2
0
        public void Send(EmailTemplate template, params string[] recipients)
        {
            if (template == null)
            {
                throw new ArgumentNullException(nameof(template));
            }
            if (recipients == null)
            {
                throw new ArgumentNullException(nameof(recipients));
            }

            using (var message = new MailMessage())
                using (var smtpClient = new SmtpClient())
                {
                    message.Subject    = template.Subject;
                    message.Body       = template.GetBody();
                    message.IsBodyHtml = template.IsHtml;

                    if (template.MailPriority.HasValue)
                    {
                        message.Priority = template.MailPriority.Value;
                    }

                    foreach (string recipient in recipients)
                    {
                        if (!string.IsNullOrWhiteSpace(recipient))
                        {
                            message.To.Add(recipient.Trim());
                        }
                    }

                    foreach (Attachment attachment in template.Attachments ?? new Attachment[0])
                    {
                        message.Attachments.Add(attachment);
                    }

                    smtpClient.Send(message);
                }
        }