Help for this page

Select Code to Download


  1. or download this
    sub email {
        my ($self, $data) = @_;
    ...
        }
        $self->{kf}->_c("EmailInvoice", $data);
    }
    
  2. or download this
    <?xml version="1.0" encoding="UTF-8"?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" 
    +xmlns:s1="KashFlow/AbstractTypes" xmlns:soapenc="http://schemas.xmlso
    +ap.org/soap/encoding/" xmlns:tns="KashFlow" xmlns:xsd="http://www.w3.
    +org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-insta
    +nce" soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    ...
          </EmailInvoice>
       </soap:Body>
    </soap:Envelope>
    
  3. or download this
    EmailInvoice => {
        endpoint => 'https://securedwebapp.com/api/service.asmx',
    ...
          SOAP::Data->new(name => 'RecipientEmail', type => 'xsd:string', 
    +attr => {}),
        ], # end parameters
      }, # end EmailInvoice
    
  4. or download this
    sub _c {
        my ($self, $method, @args) = @_;
    ...
        if ($explanation) { croak($explanation) }
        return $result;
    }
    
  5. or download this
    $VAR1 = {
              'FromName' => 'Billing',
    ...
              'InvoiceNumber' => '239925',
              'SubjectLine' => 'Invoice from Billing for February 2015'
            };