Exemplo n.º 1
0
        /// <summary>
        ///     Fire event report send bulk mail
        /// </summary>
        /// <param name="e"></param>
        protected virtual void OnSendBulkMailProgress(EmailSenderArgs e)
        {
            var handler = SendBulkMailProgress;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Exemplo n.º 2
0
 /// <summary>
 ///     Fire event report send bulk mail
 /// </summary>
 /// <param name="e"></param>
 protected virtual void OnSendBulkMailProgress(EmailSenderArgs e)
 {
     var handler = SendBulkMailProgress;
     if (handler != null) handler(this, e);
 }