Click or drag to resize

Doc_mail_callback Delegate

Mails the data buffer as an attachment to all recipients, with or without user interaction.

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public delegate void Doc_mail_callback(
	IPDF_JSPLATFORM pThis,
	byte[] mailData,
	int length,
	bool bUI,
	string To,
	string Subject,
	string Cc,
	string Bcc,
	string Msg
)

Parameters

pThis  IPDF_JSPLATFORM
Pointer to the interface structure itself
mailData  Byte[]
Pointer to the data buffer to be sent.Can be NULL.
length  Int32
The size,in bytes, of the buffer pointed by mailData parameter.Can be 0.
bUI  Boolean
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.
To  String
A semicolon-delimited list of recipients for the message.
Subject  String
The subject of the message. The length limit is 64 KB.
Cc  String
A semicolon-delimited list of CC recipients for the message.
Bcc  String
A semicolon-delimited list of BCC recipients for the message.
Msg  String
The content of the message. The length limit is 64 KB.
Remarks
Required: Yes. If the parameter mailData is NULL or length is 0, the current document will be mailed as an attachment to all recipients.
See Also