PHP Classes

File: usage.txt

Recommend this page to a friend!
  Classes of Douglas M Santos   GafMail   ???   Download  
File: ???
Role: Documentation
Content type: text/plain
Description: Usage
Class: GafMail
Compose and send text or HTML e-mail messages
Author: By
Last change:
Date: 18 years ago
Size: 457 bytes
 

Contents

Class file image Download
require_once "GafMail.inc.php"; $m = GafMailFactory::createMail(); $m->setSubject("Enter Subject Here"); $m->setFrom("[email protected]"); $m->setTo("[email protected]"); $m->setReplyTo("[email protected]"); // optional $m->isHtml=true; //default false $m->setBody("<h3>Este</h3> é um <a href=#>e-mail</a> qualquer"); // text or html message body $m->send(); if($m->hasErrors()){ echo "error send mail"; } else{ echo "mail sent"; }