Method | Description | |
---|---|---|
AddNewEmail ( |
Adds an email to database
|
|
SendAllEmails ( ) : int |
Sends all emails stored in database
|
|
SendAllEmails ( int emailsCount ) : int |
Sends a specified number of emails stored in database
|
|
Sender ( ) : System.Net |
Public constructor
|
|
Sender ( string server ) : System.Net |
Public constructor
|
|
Sender ( string server, string username, string password ) : System.Net |
Public constructor
|
|
Sender ( string server, string username, string password, int timeOut, int port ) : System.Net |
Public constructor
|
Method | Description | |
---|---|---|
SendMail ( |
Sends an email
|
|
SendQueue ( int emailsCount ) : int |
Sends specified number of emails stored in the queue
|
public AddNewEmail ( |
||
Email to add | ||
return | void |
public SendAllEmails ( int emailsCount ) : int | ||
emailsCount | int | Number of emails to send |
return | int |
public Sender ( string server ) : System.Net | ||
server | string | SMTP server |
return | System.Net |
public Sender ( string server, string username, string password ) : System.Net | ||
server | string | SMTP server |
username | string | SMTP username |
password | string | SMTP password |
return | System.Net |
public Sender ( string server, string username, string password, int timeOut, int port ) : System.Net | ||
server | string | SMTP server |
username | string | SMTP username |
password | string | SMTP password |
timeOut | int | Operation timeout |
port | int | SMTP port |
return | System.Net |