 |
|
|
 |
| Function |
Description |
Parameters |
Usage |
| ConnectPop3 |
Connect to a pop3 mailbox |
host - alpha port - number user - alpha pwd - alpha |
udf('hfmbox.connectpop3', host, port, user, pwd ) |
| DisconnectPop3 |
Disconnect from a pop3 mailbox |
|
udf('hfmbox.disconnectpop3' ) |
| MsgCount |
Retrieve count of messages in pop3 mailbox |
returns number |
udf('hfmbox.msgcount' ) |
| GetMsg |
Retrieve message from pop3 mailbox |
msgnum - number returns msg - alpha |
udf('hfmbox.getmsg', msgnum ) |
| GetMsgHdr |
Retrieve message header from pop3 mailbox |
msgnum - number returns msghdr - alpha |
udf('hfmbox.getmsghdr', msgnum ) |
| SaveMsg |
Save message |
msgnum - number filename - alpha |
udf('hfmbox.savemsg', msgnum, filename ) |
| SaveMsgHdr |
Save message header |
msgnum - number filename - alpha |
udf('hfmbox.savemsghdr', msgnum, filename ) |
| DelMsg |
Delete message |
msgnum - number |
udf('hfmbox.delmsg', msgnum ) |
| GetMsgUIDL |
Get message UIDL |
msgnum - number returns UIDL - alpha |
udf('hfmbox.getmsguidl', msgnum ) |
| GetAllHdrs |
Get all message headers |
returns msg headers - alpha |
udf('hfmbox.getallhdrs' ) |
| SaveAllHdrs |
Save all headers |
filename - alpha |
udf('hfmbox.saveallhdrs', filename ) |
| SaveAllMsgs |
Save all msgs |
filename - alpha |
udf('hfmbox.saveallmsgs', filename ) |
| ConnectSMTP |
Connect to a smtp server |
host - alpha port - number |
udf('hfmbox.connectsmtp', host, port ) |
| DisconnectSMTP |
Disconnect from a smtp server |
|
udf('hfmbox.disconnectsmtp' ) |
| ConnectPop3 |
Connect to a pop3 mailbox |
host - alpha port - number user - alpha pwd - alpha |
udf('hfmbox.connectpop3', host, port, user, pwd ) |
| SendEMLfile |
send EML file |
filename - alpha |
udf('hfmbox.sendemlfile', filename ) |
| SendMsg |
Send msg via smtp |
from - alpha tolist - alpha cclist - alpha
bcclist - alpha subject - alpha body - alpha attach - alpha |
udf('hfmbox.sendmsg', from, tolist, cclist, bcclist, subject, body, attach ) |
| EndSession |
End mailbox session |
|
udf('hfmbox.endsession' ) |
| Version |
Returns module version string |
|
udf('hfcomm.version') |
 |
|
|
 |
|