ReadEmailWithAttach method: MCFGetMail class
Syntax
ReadEmailWithAttach(User, password, server, node, UID)
Description
Use the ReadEmailWithAttach method to read and return an email based on a unique identifier (UID) for the specific email to be read. If attachments are associated with this email, ReadEmailWithAttach fetches those as well.
Parameters
| Parameter | Description |
|---|---|
|
user |
The user name on the mail server, such as “support” or “john_doe”. |
|
password |
The password associated with the specified user name. |
|
server |
The name of the mail server handling the specified user account. |
|
node |
The Integration Broker node on which the request runs. |
|
UID |
The unique identifier of the email. This parameter is only unique within a particular user account. POP3 and IMAP 4 mail servers automatically create a unique identifier for an email when the server receives the email. You may specify more than one UID, each separated by a space. |
Note:
If the value of any of these parameters is null, the method uses default values stored on the specified node. If the node is not specified, Integration Broker returns an error.
Returns
This method returns an email within a rowset. Level one of the rowset contains the email parts. Level zero row 1 only contains values for MCF_NUMROWS and MCF_RET_STATUS.
Example
import PT_MCF_MAIL:*;
Local MCFGetMail &gm;
Local Rowset &emails_rs;
&emails_rs = &gm.ReadEmailWithAttach(&username, &passwd, &mailserver, &node, &UID);
Related Topics