Código HTML:
<form metod=post>
este es parte del archivo que tengo como include
Código PHP:
<?php
$INCLUDE_DIR = "../";
require("phpunit.php");
require($INCLUDE_DIR . "class.phpmailer.php");
error_reporting(E_ALL);
class phpmailerTest extends TestCase
{
var $Mail = false;
var $Host = "";
var $ChangeLog = array();
var $NoteLog = array();
function phpmailerTest($name) {
/* must define this constructor */
$this->TestCase( $name );
}
function setUp() {
global $global_vars;
global $INCLUDE_DIR;
$this->Mail = new PHPMailer();
$this->Mail->Priority = 3;
$this->Mail->Encoding = "8bit";
$this->Mail->CharSet = "iso-8859-1";
$this->Mail->From = "[email protected]";
$this->Mail->FromName = "test";
$this->Mail->Sender = "";
$this->Mail->Subject = "Test";
$this->Mail->Body = "";
$this->Mail->AltBody = "";
$this->Mail->WordWrap = 0;
$this->Mail->Host = $global_vars["mail_host"];
$this->Mail->Port = 25;
$this->Mail->Helo = "localhost.localdomain";
$this->Mail->SMTPAuth = false;
$this->Mail->Username = "";
$this->Mail->Password = "";
$this->Mail->PluginDir = $INCLUDE_DIR;
$this->Mail->AddReplyTo("[email protected]", "[email protected]");
$this->Mail->Sender = "[email protected]";
if(strlen($this->Mail->Host) > 0)
$this->Mail->Mailer = "smtp";
else
{
$this->Mail->Mailer = "mail";
$this->Sender = "[email protected]";
}
global $global_vars;
$this->SetAddress($global_vars["correo"], "Usuarios");
if(strlen($global_vars["mail_cc"]) > 0)
$this->SetAddress($global_vars["mail_cc"], "Usuarios", "cc");
}
function tearDown() {
// Clean global variables
$this->Mail = NULL;
$this->ChangeLog = array();
$this->NoteLog = array();
}
function BuildBody() {
$this->CheckChanges();
if($this->Mail->ContentType == "text/html" || strlen($this->Mail->AltBody) > 0)
{
$eol = "<br/>";
$bullet = "<li>";
$bullet_start = "<ul>";
$bullet_end = "</ul>";
}
else
{
$eol = "\n";
$bullet = " - ";
$bullet_start = "";
$bullet_end = "";
}
$ReportBody = "";
if(strlen($this->Mail->Host) > 0)
$ReportBody .= "Host: " . $this->Mail->Host . $eol;
// If attachments then create an attachment list
if(count($this->Mail->attachment) > 0)
{
print "";
}
// If there are changes then list them
if(count($this->ChangeLog) > 0)
{
print "";
}
// ....Y MUCHO MAS!
o habra una manera de combertir las variables pasadas de manera post A -> GET
gracias amigos