Login   Register  
PHP Classes
elePHPant
Icontem

File: SendEmail-example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Sceptre  >  Simple External SMTP  >  SendEmail-example.php  >  Download  
File: SendEmail-example.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Simple External SMTP
Send e-mail messages via SMTP with authentication
Author: By
Last change:
Date: 2012-09-03 07:16
Size: 825 bytes
 

Contents

Class file image Download
<?PHP
die('remove this');

//test script for class_email

require 'SendEmail.php';
//require 'class_email-small.php';


$e = new SendEmail();
$e->set_server'mail.local'25);
//$e->set_server( 'smtp.gmail.com', 587);

$e->set_auth('your smtp username''your smtp password');

$e->set_sender'Name of sender''email@ofsender.local' );

$e->set_hostname('some servers require a valid rdns name');
//$e->set_debug(true);
//$e->set_crypto('ssl');
//$e->set_smtp_try(false);

$subject 'This is a text subject Ää, Öö, Üü';
$body "This is the test body of the message\r\nIt may contain special characters: Ää, Öö, Üü\r\n";
//$e->set_type(0);

$e->mail('send@mailto.local'$subject$body);

echo 
'last: '.$e->srv_ret['last']."\n";
echo 
'all: '.$e->srv_ret['all']."\n";
echo 
'full'.$e->srv_ret['full']."\n";

?>