Class SendDocumentArgs
Contains email configuration parameters for sending rendered reports via email through the reporting service.
Inheritance
Namespace: Telerik.Reporting.Services.WebApi
Assembly: Telerik.Reporting.Services.WebApi.dll
Syntax
public class SendDocumentArgs
Remarks
This class encapsulates all necessary email parameters required for the SendDocument operation. Used when clients request to email rendered reports directly from the reporting service. Supports standard email fields including recipients, carbon copy, subject, and body content.
Constructors
SendDocumentArgs()
Declaration
public SendDocumentArgs()
Properties
Body
Gets or sets the main content text for the email message body.
Declaration
public string Body { get; set; }
Property Value
|
System.String
A string containing the message body text that will accompany the report attachment. Can include plain text or HTML content depending on the email client configuration. |
Cc
Gets or sets the carbon copy recipient email addresses for the message.
Declaration
public string Cc { get; set; }
Property Value
|
System.String
A string containing one or more email addresses separated by semicolons or commas. These addresses will receive a copy of the message with the report attachment. Can be null or empty if no carbon copy recipients are needed. |
From
Gets or sets the sender's email address for the outgoing message.
Declaration
public string From { get; set; }
Property Value
|
System.String
A string containing the email address that will appear in the From field of the sent message. Should be a valid email address format (e.g., "sender@example.com"). |
Subject
Gets or sets the subject line text for the email message.
Declaration
public string Subject { get; set; }
Property Value
|
System.String
A string containing the subject text that will appear in the email header. Should provide a clear description of the report content being sent. |
To
Gets or sets the primary recipient email addresses for the message.
Declaration
public string To { get; set; }
Property Value
|
System.String
A string containing one or more email addresses separated by semicolons or commas. These addresses will receive the report document as an attachment. |