Exemple #1
0
        /// <summary>
        /// Send an email message from the sender to the receiver.
        /// </summary>
        /// <param name="sender">The sender of the email with the credentials initialized.</param>
        /// <param name="recipient">The receiver of the email.</param>
        /// <param name="message">The message to send.</param>
        public void Send(MEmailClient sender, List<MEmailClient> recipients, MEmailMessage message)
        {
            // init mail message object
            MailMessage mailMessage = new MailMessage();
            mailMessage.From = new MailAddress(sender.EmailID, sender.Password);
            mailMessage.Subject = message.Subject;
            mailMessage.Body = message.Body;
            mailMessage.IsBodyHtml = message.IsBodyHtml;

            // include all recipients to our mail message object
            foreach(MEmailClient recipient in recipients)
            {
                mailMessage.To.Add(recipient.EmailID);
            }

            // set SMTP client object
            SmtpClient smtpClient = new SmtpClient(sender.Provider.Host, sender.Provider.Port);
            smtpClient.EnableSsl = sender.Provider.EnableSSL;
            smtpClient.DeliveryMethod = SmtpDeliveryMethod.Network;
            smtpClient.UseDefaultCredentials = false;

            // set timeout for the SMTP server to respond
            smtpClient.Timeout = (int)TimeSpan.FromSeconds(10).TotalMilliseconds;

            smtpClient.Send(mailMessage);
        }
Exemple #2
0
 /// <summary>
 /// Send an email message from the sender to the receiver with the default sender configured.
 /// </summary>
 /// <param name="recipient">The receiver of the email to send.</param>
 /// <param name="message">The message to send.</param>
 public void SendWithDefaultSender(List<MEmailClient> recipients, MEmailMessage message)
 {
     Send(DefaultSender, recipients, message);
 }