IEmailServiceSendEmail(ICollectionAccount, ICollectionAccount, ICollectionAccount, String, String) Method |
Uses the application's configured email settings to send an email.
Namespace: Dundas.BI.ServicesAssembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
Syntaxvoid SendEmail(
ICollection<Account>? emailAccountsTo,
ICollection<Account>? emailAccountsCc,
ICollection<Account>? emailAccountsBcc,
string subject,
string body
)
Sub SendEmail (
emailAccountsTo As ICollection(Of Account),
emailAccountsCc As ICollection(Of Account),
emailAccountsBcc As ICollection(Of Account),
subject As String,
body As String
)
void SendEmail(
ICollection<Account^>^ emailAccountsTo,
ICollection<Account^>^ emailAccountsCc,
ICollection<Account^>^ emailAccountsBcc,
String^ subject,
String^ body
)
abstract SendEmail :
emailAccountsTo : ICollection<Account> *
emailAccountsCc : ICollection<Account> *
emailAccountsBcc : ICollection<Account> *
subject : string *
body : string -> unit Parameters
- emailAccountsTo ICollectionAccount
- List of email addresses to send to.
- emailAccountsCc ICollectionAccount
- List of email addresses to CC.
- emailAccountsBcc ICollectionAccount
- List of email addresses to BCC.
- subject String
- Subject line for the email.
- body String
- Body of the email.
Exceptions| Exception | Condition |
|---|
| ArgumentException | There are no recipients specified, or tenantId is Empty. |
| FormatException | The format of the provided email addresses is invalid. |
| NotSupportedException | The email delivery type in the application configuration is set to None (error code 2500). -or- The sender address is not set in the application configuration (error code 2501). -or- The email delivery type in application configuration is DropFolder and
the pick up directory is invalid. |
| OperationFailedException | An unexpected error occurred when sending the email message. |
See Also