SendEmailOptions
is defined in the Telligent.Evolution.Extensibility.Api.Version2
namespace of Telligent.Evolution.Platform.dll
Definition
class SendEmailOptions { Guid? ApplicationId { get; set; } Guid? ApplicationTypeId { get; set; } IList<ICentralizedFile> Attachments { get; set; } string Body { get; set; } string Footer { get; set; } string FromEmail { get; set; } int? FromUserId { get; set; } string Header { get; set; } Dictionary<string,string> Headers { get; set; } string Language { get; set; } string Subject { get; set; } string Target { get; set; } string ToEmail { get; set; } int? ToUserId { get; set; } }
Properties
Name | Type | Description | Default | Options |
---|---|---|---|---|
ApplicationId | Guid? | Application Id | ||
ApplicationTypeId | Guid? | Application Type Id | ||
Attachments | IList<ICentralizedFile> | Attachments for the email. Only files uploaded to CFS are supported. | ||
Body | string | The email body. | ||
Footer | string | The email footer. | ||
FromEmail | string | The email address the email is from. When not specified the site email address used. | ||
FromUserId | int? | The id of the user the email is from. When not specified the site email address used. | ||
Header | string | The email header. | ||
Headers | Dictionary<string,string> | Additional headers to be added to an email. Only supported by providers that utilize communication headers. | ||
Language | string | Optionally specifies the language key used when rendering the email content into the email template. | ||
Subject | string | The email subject. | ||
Target | string | Target | ||
ToEmail | string | The email address the email is intended for. | ||
ToUserId | int? | The id of the user the email is intended for. |