negative.
I'm dynamically creating the mailboxes through a script. I need to be able to set the ONDELIVERY script per each dynamically created box on-the-fly.
Search found 5 matches
- Mon May 23, 2005 10:10 am
- Forum: MailEnable Developers
- Topic: Help - exec on delivery.
- Replies: 3
- Views: 5516
- Fri May 20, 2005 12:22 am
- Forum: MailEnable Developers
- Topic: Help - exec on delivery.
- Replies: 3
- Views: 5516
Help - exec on delivery.
I am creating mailboxes on-the-fly. Everything is peachy minus 1 little issue....... I need to be able to tell the mailbox to call a script "ON DELIVERY". MailEnable has the option in the server console...this won't work for what I need to do. Basically I need to parse any email coming into these dy...
- Thu May 19, 2005 10:41 pm
- Forum: MailEnable Developers
- Topic: PHP/MailEnable Answered
- Replies: 9
- Views: 12566
Yeah I got that issue with php5> I forgot to mention this but if you're trying to grab ALL the email in the inbox then you MUST set $MailMsgObject->RecordsPerPage = $MailMsgObject->NumRecords; NM.... I jumped the gun on the above statement. NumRecords will output the current recordCount in the Relat...
- Tue May 17, 2005 12:00 am
- Forum: MailEnable Developers
- Topic: PHP/MailEnable Answered
- Replies: 9
- Views: 12566
PHP/MailEnable Answered
Hope this puts some on the right track. The API guide is a joke right now and should be updated. //Print folder list $ofl = new COM("MEWebMail.MailFolders"); $rs = $ofl->GetFolders($po,$user,$pass,"\\"); while(!$rs->EOF()) { echo $rs->fields['FolderName']->Value()."-<BR>"; $rs->MoveNext(); } //Get M...
- Mon May 16, 2005 8:42 pm
- Forum: MailEnable Developers
- Topic: Help please , PHP/ListMessages()
- Replies: 0
- Views: 2581
Help please , PHP/ListMessages()
Having an issue with PHP and ListMessages()...
From what I see ListMessages returns a recordset specifically built for ADO?
$x = $om->ListMessages();
Returns resource Indentifier naturally...
So How do I parse through the ListMessages()?
Is it delimited?
Any help would be much appreciated.
From what I see ListMessages returns a recordset specifically built for ADO?
$x = $om->ListMessages();
Returns resource Indentifier naturally...
So How do I parse through the ListMessages()?
Is it delimited?
Any help would be much appreciated.