| // +----------------------------------------------------------------------+ // // $Id: smtp.php 322284 2012-01-14 13:15:06Z clockwerx $ // // include soap client class include("SOAP/Client.php"); $soapclient = new SOAP_Client("mailto:shane@caraveo.com"); $options = array('namespace' => 'http://soapinterop.org/', 'from' => 'shane@caraveo.com'); $return = $soapclient->call("echoString", array("inputString" => "this is a test"), $options); print_r($return); unset($soapclient);