Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

imap_mail_compose(3) [php man page]

IMAP_MAIL_COMPOSE(3)							 1						      IMAP_MAIL_COMPOSE(3)

imap_mail_compose - Create a MIME message based on given envelope and body sections

SYNOPSIS
string imap_mail_compose (array $envelope, array $body) DESCRIPTION
Create a MIME message based on the given $envelope and $body sections. PARAMETERS
o $envelope - An associative array of headers fields. Valid keys are: "remail", "return_path", "date", "from", "reply_to", "in_reply_to", "subject", "to", "cc", "bcc", "message_id" and "custom_headers" (which contains associative array of other headers). o $body - An indexed array of bodies A body is an associative array which can consist of the following keys: "type", "encoding", "charset", "type.parameters", "subtype", "id", "description", "disposition.type", "disposition", "contents.data", "lines", "bytes" and "md5". RETURN VALUES
Returns the MIME message. EXAMPLES
Example #1 imap_mail_compose(3) example <?php $envelope["from"]= "joe@example.com"; $envelope["to"] = "foo@example.com"; $envelope["cc"] = "bar@example.com"; $part1["type"] = TYPEMULTIPART; $part1["subtype"] = "mixed"; $filename = "/tmp/imap.c.gz"; $fp = fopen($filename, "r"); $contents = fread($fp, filesize($filename)); fclose($fp); $part2["type"] = TYPEAPPLICATION; $part2["encoding"] = ENCBINARY; $part2["subtype"] = "octet-stream"; $part2["description"] = basename($filename); $part2["contents.data"] = $contents; $part3["type"] = TYPETEXT; $part3["subtype"] = "plain"; $part3["description"] = "description3"; $part3["contents.data"] = "contents.data3 "; $body[1] = $part1; $body[2] = $part2; $body[3] = $part3; echo nl2br(imap_mail_compose($envelope, $body)); ?> PHP Documentation Group IMAP_MAIL_COMPOSE(3)

Check Out this Related Man Page

STOMP_READ_FRAME(3)							 1						       STOMP_READ_FRAME(3)

Stomp::readFrame - Reads the next frame

       Object oriented style (method):

SYNOPSIS
public stompframe Stomp::readFrame ([string $class_name = "stompFrame"]) DESCRIPTION
Procedural style: array stomp_read_frame (resource $link) Reads the next frame. It is possible to instantiate an object of a specific class, and pass parameters to that class's constructor. PARAMETERS
o $link -Procedural style only: The stomp link identifier returned by stomp_connect(3). o $class_name - The name of the class to instantiate. If not specified, a stompFrame object is returned. RETURN VALUES
Note A transaction header may be specified, indicating that the message acknowledgment should be part of the named transaction. CHANGELOG
+------------+----------------------------------+ | Version | | | | | | | Description | | | | +------------+----------------------------------+ |Stomp 0.4.0 | | | | | | | $class_name parameter was added. | | | | +------------+----------------------------------+ EXAMPLES
Example #1 Object oriented style <?php /* connection */ try { $stomp = new Stomp('tcp://localhost:61613'); } catch(StompException $e) { die('Connection failed: ' . $e->getMessage()); } /* subscribe to messages from the queue 'foo' */ $stomp->subscribe('/queue/foo'); /* read a frame */ var_dump($stomp->readFrame()); /* close connection */ unset($stomp); ?> The above example will output something similar to: object(StompFrame)#2(3) { ["command"]=> string(7) "MESSAGE" ["headers"]=> array(5) { ["message-id"]=> string(41) "ID:php.net-55293-1257226743606-4:2:-1:1:1" ["destination"]=> string(10) "/queue/foo" ["timestamp"]=> string(13) "1257226805828" ["expires"]=> string(1) "0" ["priority"]=> string(1) "0" } ["body"]=> string(3) "bar" } Example #2 Procedural style <?php /* connection */ $link = stomp_connect('ssl://localhost:61612'); /* check connection */ if (!$link) { die('Connection failed: ' . stomp_connect_error()); } /* subscribe to messages from the queue 'foo' */ stomp_subscribe($link, '/queue/foo'); /* read a frame */ $frame = stomp_read_frame($link); /* close connection */ stomp_close($link); ?> The above example will output something similar to: array(3) { ["command"]=> string(7) "MESSAGE" ["body"]=> string(3) "bar" ["headers"]=> array(6) { ["transaction"]=> string(2) "t1" ["message-id"]=> string(41) "ID:php.net-55293-1257226743606-4:3:-1:1:1" ["destination"]=> string(10) "/queue/foo" ["timestamp"]=> string(13) "1257227037059" ["expires"]=> string(1) "0" ["priority"]=> string(1) "0" } } PHP Documentation Group STOMP_READ_FRAME(3)
Man Page