SOAP::Transport::MAILTO - Client side SMTP/sendmail support for SOAP::Lite
use SOAP::Lite; SOAP::Lite -> uri('http://soaplite.com/My/Examples') -> proxy('mailto:destination.email@address', smtp => 'smtp.server', From => 'your.email', Subject => 'SOAP message') # or # -> proxy('mailto:destination.email@address?From=your.email&Subject=SOAP%20message', smtp => 'smtp.server') # or if you want to send with sendmail # -> proxy('mailto:destination.email@address?From=your.email&Subject=SOAP%20message') # or if your sendmail is in undiscoverable place # -> proxy('mailto:destination.email@address?From=your.email&Subject=SOAP%20message', sendmail => 'command to run your sendmail') -> getStateName(12) ;
Copyright (C) 2000-2001 Paul Kulchenko. All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Paul Kulchenko (paulclinger@yahoo.com)