| Module Name |
TWiki::Net, NetDotPm |
| Location |
TWIKIROOT/lib/TWiki/Net.pm |
| Summary |
This module handles network related functions like http access and send mail |
| Primary Author |
Main. |
| CVS history |
CVS:lib/TWiki/Net.pm |
| CVS alpha |
CVSget:lib/TWiki/Net.pm |
| Contributing authors |
(see CVS History) |
| Is Class |
NO |
| First Release |
to be filled out |
|
|
Purpose
This module handles network related functions like http access and send mail
Used by
This module is primarily used by ...
Please see
CodevDocumentationProject and
CodevDocumentationProjectDev for comments on the format of these pages.
| Note: |
Below documentation is extracted from the currently installed TWiki::Net Perl module, which is done by the PerlDocPlugin |
package TWiki::Net
Object that brokers access to network resources.
=begin twiki
ObjectMethod finish()
Break circular references.
ObjectMethod registerExternalHTTPHandler( \&fn )
See TWikiFuncDotPm#RegisterExternalHTTPHandler
ObjectMethod getExternalResource( $url, \@headers, \%params ) -> $response
See TWikiFuncDotPm#GetExternalResource
ObjectMethod postExternalResource( $url, $content, \@headers, \%params ) -> $response
See TWikiFuncDotPm#PostExternalResource
ObjectMethod setMailHandler( \&fn )
-
\&fn - reference to a function($) (see _sendEmailBySendmail for proto)
Install a handler function to take over mail sending from the default
SMTP or sendmail methods. This is provided mainly for tests that
need to be told when a mail is sent, without actually sending it. It
may also be useful in the event that someone needs to plug in an
alternative mail handling method.
ObjectMethod sendEmail ( $text, $tries ) -> $error
-
$text - text of the mail, including MIME headers
-
$tries - number of times to try the send (default 1)
Send an email specified as MIME format content.
Date: ...\nFrom: ...\nTo: ...\nCC: ...\nSubject: ...\n\nMailBody...
Contributors:
--
MartinCleaver - 23 Jun 2002
--
PeterThoeny - 02 Feb 2004
Discussions