This class provides methods to send emails using the application's configured email settings
or a specific set of email settings.
Namespace:
Dundas.BI.Services
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntaxpublic interface IEmailService
Public Interface IEmailService
public interface class IEmailService
type IEmailService = interface end
The IEmailService type exposes the following members.
Properties
Methods
| Name | Description |
---|
 | EnsureEmailServiceEnabled | Throws an exception if the email service is not enabled. |
 | SendEmail(MailMessage) |
Uses the application's configured email settings to send an email.
|
 | SendEmail(MailMessage, Nullable<Guid>) |
Uses the application's configured email settings to send an email.
|
 | SendEmail(ICollection<MailAddress>, ICollection<MailAddress>, ICollection<MailAddress>, String, String) | |
 | SendEmail(ICollection<String>, ICollection<String>, ICollection<String>, String, String) |
Uses the application's configured email settings to send an email.
|
 | SendEmail(ICollection<Account>, ICollection<Account>, ICollection<Account>, String, String) |
Uses the application's configured email settings to send an email.
|
 | SendEmail(ICollection<MailAddress>, ICollection<MailAddress>, ICollection<MailAddress>, String, String, Nullable<Guid>) |
Uses the application's configured email settings to send an email.
|
 | SendEmail(ICollection<String>, ICollection<String>, ICollection<String>, String, String, Nullable<Guid>) |
Uses the application's configured email settings to send an email.
|
 | SendEmail(ICollection<Account>, ICollection<Account>, ICollection<Account>, String, String, Nullable<Guid>) |
Uses the application's configured email settings to send an email.
|
 | SendTestEmail |
Uses the application's configured email settings to send a test email.
|
Top
See Also