PHP Classes

File: action.php

Recommend this page to a friend!
  Classes of André Cupini   Send Mail Class   action.php   Download  
File: action.php
Role: Application script
Content type: text/plain
Description: From action page
Class: Send Mail Class
Send email with data submitted with HTML forms
Author: By
Last change:
Date: 20 years ago
Size: 202 bytes
 

Contents

Class file image Download
<?
require_once "sendmail.class.php";
$sendmail = new sendMail();
$sendmail->set(html, true);
$sendmail->getParams($_POST);
$sendmail->parseBody();
$sendmail->setHeaders();
$sendmail->send();
?>