Login   Register  
PHP Classes
elePHPant
Icontem

File: var.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Luis Alfredo Guimarães Caldas Neto  >  TMail  >  var.php  >  Download  
File: var.php
Role: Configuration script
Content type: text/plain
Description: Example of script to configures the delivery (Arquivo de variáveis)
Class: TMail
Mass mail delivery
Author: By
Last change:
Date: 2003-12-05 06:00
Size: 762 bytes
 

Contents

Class file image Download
<?
//==> Tmail
    //-> Constantes
    
define('de','de');
    
define('para','para');
    
define('com_copia','com_copia');
    
define('com_copia_oculta','com_copia_oculta');

    
//-> Servidor SMTP
    
ini_set('SMTP','smtp.ig.com.br');
    
ini_set('sendmail_from','luisnt@ig.com.br');

    
//-> Variáveis
    
$email[de]               = "LuisNt <LuisNt@ig.com.br>";
    
$email[para]             = "Nome <nome@dominio.com.br>";
    
$email[com_copia]        = "birthdayarchive@example.com <birthday@example.com>";
    
$email[com_copia_oculta] = "birthdaycheck@example.com <birthday@example.com>";
    
$assunto                 'Assunto do e-mail.'.date('d/m/Y h:n:s');
    
$mensagem                "<br> <b> tes</b>te de mensagem em html";

?>