1# ======================================================================
2#
3# Copyright (C) 2000-2004 Paul Kulchenko (paulclinger@yahoo.com)
4# SOAP::Lite is free software; you can redistribute it
5# and/or modify it under the same terms as Perl itself.
6#
7# $Id: MAILTO.pm 36 2004-10-16 17:45:17Z byrnereese $
8#
9# ======================================================================
10
11__END__
12
13=head1 NAME
14
15SOAP::Transport::MAILTO - Client side SMTP/sendmail support for SOAP::Lite
16
17=head1 SYNOPSIS
18
19  use SOAP::Lite;
20
21  SOAP::Lite
22    -> uri('http://soaplite.com/My/Examples')
23    -> proxy('mailto:destination.email@address', smtp => 'smtp.server', From => 'your.email', Subject => 'SOAP message')
24
25    # or
26    # -> proxy('mailto:destination.email@address?From=your.email&Subject=SOAP%20message', smtp => 'smtp.server')
27
28    # or if you want to send with sendmail
29    # -> proxy('mailto:destination.email@address?From=your.email&Subject=SOAP%20message')
30
31    # or if your sendmail is in undiscoverable place
32    # -> proxy('mailto:destination.email@address?From=your.email&Subject=SOAP%20message', sendmail => 'command to run your sendmail')
33
34    -> getStateName(12)
35  ;
36
37=head1 DESCRIPTION
38
39=head1 COPYRIGHT
40
41Copyright (C) 2000-2001 Paul Kulchenko. All rights reserved.
42
43This library is free software; you can redistribute it and/or modify
44it under the same terms as Perl itself.
45
46=head1 AUTHOR
47
48Paul Kulchenko (paulclinger@yahoo.com)
49
50=cut
51