Click or drag to resize

SendMailEventArgs Class

Represents the class that contain event data for SendMail event
Inheritance Hierarchy
SystemObject
  SystemEventArgs
    Patagames.Pdf.Net.EventArgumentsSendMailEventArgs

Namespace: Patagames.Pdf.Net.EventArguments
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntax
public class SendMailEventArgs : EventArgs

The SendMailEventArgs type exposes the following members.

Constructors
 NameDescription
Public methodSendMailEventArgs Construct SendMailEventArgs object
Top
Properties
 NameDescription
Public propertyBcc A semicolon-delimited list of BCC recipients for the message.
Public propertyCc A semicolon-delimited list of CC recipients for the message.
Public propertyData Pointer to the data buffer to be sent.Can be NULL.
Public propertyIsGUI If true, the rest of the parameters are used in a compose-new-message window that is displayed to the user. If false, the cTo parameter is required and all others are optional.
Public propertyMsg The content of the message. The length limit is 64 KB.
Public propertySubject The subject of the message. The length limit is 64 KB.
Public propertyTo A semicolon-delimited list of recipients for the message.
Top
Remarks
Application should mails the data buffer as an attachment to all recipients, with or without user interaction.
See Also