Queue message
Anatomy
<mail:queue var="var" mailserver="(default system SMTP server)" senddate="(do not send)">
<mail:header>string</mail:header>
<mail:body>string</mail:body>
</mail:queue>
Description: MAIL:QUEUE consignes an e-mail message to the mail sending queue.
Attributes
| Name | Type | Description | Defined By |
|---|---|---|---|
| var | var | Result variable name for message ID | mail:queue |
| mailserver | int | Mail server ID | mail:queue |
| senddate | int | Send date | mail:queue |
Results:
| Binding | Type | Predicate |
|---|---|---|
| var | N/A |
Children
mail:header
Anatomy of Mail header
<mail:header>string</mail:header>
mail:body
Anatomy of Mail body
<mail:body>string</mail:body>
Examples
Example
<mail:queue senddate="1262103817">
<mail:header>
From: person@example.com
To: person@example.com
Date: Tue, 29 Dec 2009 17:23:37 +0100
Subject: This is the subject of the message
Content-Type: text/plain
</mail:header>
<mail:body>This is the body of the message.</mail:body>
</mail:queue>