Api\ServiceType\ApiService::sendEmail PHP Method

sendEmail() public method

Method to call the operation originally named sendEmail Meta informations extracted from the WSDL - SOAPHeaderNames : SessionHeader, ClusterHeader - SOAPHeaderNamespaces : urn:api.actonsoftware.com, urn:api.actonsoftware.com - SOAPHeaderTypes : \Api\StructType\ApiSessionHeader, \Api\StructType\ApiClusterHeader - SOAPHeaders : optional, optional - documentation: Schedule an email to be sent.
public sendEmail ( Api\StructType\ApiSendEmail $parameter ) : Api\StructType\ApiSendEmailResponse | boolean
$parameter Api\StructType\ApiSendEmail
return Api\StructType\ApiSendEmailResponse | boolean
    public function sendEmail(\Api\StructType\ApiSendEmail $parameter)
    {
        try {
            $this->setResult(self::getSoapClient()->sendEmail($parameter));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService