Php Small Tasks
January 13th, 2012
Hi,
Can you install PEAR Mail for PHP on my VPS via Desktop sharing and run a small script.
<?php
error_reporting(E_ALL);
ini_set(‘display_errors’,'On’);
require_once “Mail.php”;
$from = “Sandra Sender “;
$to = “Ramona Recipient “;
$subject = “Hi akshay check!”;
$body = “Hi,nnHow are you?”;
$host = “email”;
$username = “email”;
$password = “Q6n1.gVA+M~_”;
$headers = array (‘From’ => $from,
‘To’ => $to,
‘Subject’ …



