Description
-
Sends string data to connected user.
Return Type
-
None
Syntax
-
object.Send Text
The Send Method syntax has these parts:
object |
An expression evaluating to an object
of type ImapUser. |
Text |
Required. A String value that will be
sent to connected user. |
Remarks
- Send method allows you to send arbitrary string
expression to connected user at any time. However, be careful
not to violate IMAP protocol specifications, so use this
method only if you know what you're doing. Mostly this
method is here for implementing new commands, and changing
defined ones, in case there's need for it.
Theoretically, using Command
event and Send method you can completely rearrange and change
behavior of IMAP server to make it work as something else,
like Smtp server. But, please, do not try this.
|