CGI::Application::MailPage

CGI::Application::MailPage is a Perl module to allow users to send HTML pages to friends.
Download

CGI::Application::MailPage Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Sam Tregar
  • Publisher web site:
  • http://search.cpan.org/~wonko/CGI-Application-MailPage-1.6/lib/CGI/Application/MailPage.pm

CGI::Application::MailPage Tags


CGI::Application::MailPage Description

CGI::Application::MailPage is a Perl module to allow users to send HTML pages to friends. CGI::Application::MailPage is a Perl module to allow users to send HTML pages to friends.SYNOPSIS use CGI::Application::MailPage; my $mailpage = CGI::Application::MailPage->new( PARAMS => { document_root => '/home/httpd', smtp_server => 'smtp.foo.org' }); $mailpage->run();CGI::Application::MailPage is a CGI::Application module that allows users to send HTML pages to their friends. This module provides the functionality behind a typical "Mail This Page To A Friend" link.To use this module you need to create a simple "stub" script. It should look like: #!/usr/bin/perl use CGI::Application::MailPage; my $mailpage = CGI::Application::MailPage->new( PARAMS => { document_root => '/home/httpd', smtp_server => 'smtp.foo.org', }, ); $mailpage->run();You'll need to replace the "/home/httpd" with the real path to your document root - the place where the HTML files are kept for your site. You'll also need to change "smtp.foo.org" to your SMTP server.Put this somewhere where CGIs can run and name it something like mailpage.cgi. Now, add a link in the pages you want people to be able to send to their friends that looks like: mail this page to a friendThis gets you the default behavior and look. To get something more to your specifications you can use the options described below. Requirements: · Perl


CGI::Application::MailPage Related Software