<?php

//echo(mail('robie@centrum.cz', 'Zkouška', 'obsah zprávy'));

include('../Mail.php');

$Mail = new Mail();
$Mail->AddTo('robie@centrum.cz', 'Chronos ěščřžýáíé');
$Mail->From = 'Sender ěščřžýáíé <noreply@nodomain>';
$Mail->Subject = 'Test message ěščřžýáíé';
$Mail->AddBody('This is sample message sent by PHP Mail class ěščřžýáíé');
$Mail->AddBody('This is sample <strong>HTML</strong> message sent by <i>PHP Mail class</i> ěščřžýáíé', 'text/html');
$Mail->AttachFile('mailtest.php', 'text/plain');
$Mail->AttachData('DataFile.txt', 'text/plain', 'Sample text ěščřžýáíé');
$Mail->Send();

?>
