Source for file Email.php
Documentation is available at Email.php
* This file contains the code for the email SOAP server.
* LICENSE: This source file is subject to version 2.02 of the PHP license,
* that is bundled with this package in the file LICENSE, and is available at
* through the world-wide-web at http://www.php.net/license/2_02.txt. If you
* did not receive a copy of the PHP license and are unable to obtain it
* through the world-wide-web, please send a note to license@php.net so we can
* mail you a copy immediately.
* @author Shane Caraveo <Shane@Caraveo.com> Port to PEAR and more
* @copyright 2003-2005 The PHP Group
* @license http://www.php.net/license/2_02.txt PHP License 2.02
* @link http://pear.php.net/package/SOAP
require_once 'SOAP/Server.php';
require_once 'SOAP/Client.php';
require_once 'SOAP/Transport.php';
require_once 'Mail/mimeDecode.php';
* SOAP Server Class that implements an email SOAP server.
* http://www.pocketsoap.com/specs/smtpbinding/
* This class overrides the default HTTP server, providing the ability to
* parse an email message and execute SOAP calls. This class DOES NOT pop the
* message; the message, complete with headers, must be passed in as a
* parameter to the service function call.
* @author Shane Caraveo <shane@php.net>
$this->send_response = $send_response;
* Removes HTTP headers from response.
* TODO: use PEAR email classes
function _parseEmail (&$data)
if (preg_match("/^(.*?)\r?\n\r?\n(.*)/s", $data, $match)) {
$hc = count($matches[0 ]);
for ($i = 0; $i < $hc; $i++ ) {
$this->_raiseSoapFault ('Invalid Content Type', '', '', 'Client');
/* If no content, return false. */
$this->_raiseSoapFault ('Invalid Email Format', '', '', 'Client');
/* If neither matches, we'll just try it anyway. */
if (stristr($data, 'Content-Type: application/dime')) {
$this->_decodeDIMEMessage ($data, $this->headers, $attachments);
} elseif (stristr($data, 'MIME-Version:')) {
/* This is a mime message, let's decode it. */
$this->_decodeMimeMessage ($data, $this->headers, $attachments);
/* The old fallback, but decodeMimeMessage handles things fine. */
$this->_parseEmail ($data);
/* Get the character encoding of the incoming request treat incoming
* data as UTF-8 if no encoding set. */
!$this->_getContentEncoding ($this->headers['content-type'])) {
/* An encoding we don't understand, return a fault. */
$this->_raiseSoapFault ('Unsupported encoding, use one of ISO-8859-1, US-ASCII, UTF-8', '', '', 'Server');
return $this->soapfault->getFault ();
return $client->parseResponse ($data, $this->xml_encoding, $this->attachments);
function service(&$data, $endpoint = '', $send_response = true ,
/* If neither matches, we'll just try it anyway. */
if (stristr($data, 'Content-Type: application/dime')) {
$this->_decodeDIMEMessage ($data, $this->headers, $attachments);
} elseif (stristr($data, 'MIME-Version:')) {
/* This is a mime message, let's decode it. */
$this->_decodeMimeMessage ($data, $this->headers, $attachments);
/* The old fallback, but decodeMimeMessage handles things fine. */
$this->_parseEmail ($data);
/* Get the character encoding of the incoming request treat incoming
* data as UTF-8 if no encoding set. */
if (!$this->_getContentEncoding ($this->headers['content-type'])) {
/* An encoding we don't understand, return a fault. */
$this->_raiseSoapFault ('Unsupported encoding, use one of ISO-8859-1, US-ASCII, UTF-8', '', '', 'Server');
$response = $this->getFaultMessage ();
$response = $this->soapfault->message ();
/* Handle Mime or DIME encoding. */
/* TODO: DIME Encoding should move to the transport, do it here
* for now and for ease of getting it done. */
if (count($this->_attachments)) {
if ($useEncoding == 'Mime') {
$soap_msg = $this->_makeMimeMessage ($soap_msg);
$soap_msg = $this->_makeDIMEMessage ($soap_msg);
$soap_msg['headers']['Content-Type'] = 'application/dime';
if (PEAR ::isError ($soap_msg)) {
return $this->raiseSoapFault ($soap_msg);
$response = $soap_msg['body'];
if (count($soap_msg['headers'])) {
$headers = $soap_msg['headers'];
if ($this->send_response) {
$headers['In-Reply-To'] = $this->headers['message-id'];
$options = array ('from' => $from, 'subject' => $this->headers['subject'], 'headers' => $headers);
$soap_transport->send ($response, $options);
Documentation generated on Mon, 04 Aug 2008 20:00:19 -0400 by phpDocumentor 1.4.0. PEAR Logo Copyright © PHP Group 2004.
|