Beispiel #1
0
if (isset($_POST['sendit'])) {
    include_once '../lib/class_sendamail.php';
    $m = new SendAMail();
    $m->eol("\r\n");
    $m->from($_POST['from']);
    $m->to($_POST['to']);
    $m->subject('Blender is cool!');
    $m->html(file_get_contents('template/template.html'));
    if (!$m->embed('template/sintel-wallpaper-dragon.jpg')) {
        exit("<p>Error: {$m->error}");
    }
    if (!$m->embed('template/sintel-wallpaper-ishtar.jpg')) {
        exit("<p>Error: {$m->error}");
    }
    if (!$m->attach('template/doc.txt')) {
        exit("<p>Error: {$m->error}");
    }
    if ($r = $m->send()) {
        echo "<p>Okidokie :)";
    } else {
        echo "<p>Error: {$m->error}";
    }
} else {
    ?>
		<form method="POST" action="htmltemplate.php" enctype="multipart/form-data">
			<input type="hidden" name="sendit" value="1" />
			
			<p>e-mail from: <input type="text" name="from" value="" />
			<p>e-mail to: <input type="text" name="to" value="" />
			<p><input type="submit" value="send" />
Beispiel #2
0
<html>
<head>
	<title>SendAMail - Attachment example</title>
</head>

<body>
<?php 
if (isset($_POST['sendit'])) {
    include_once '../lib/class_sendamail.php';
    $m = new SendAMail();
    $m->from($_POST['from']);
    $m->to($_POST['to']);
    $m->subject($_POST['subject']);
    $m->text($_POST['text']);
    if (!$m->attach($_FILES['attach1'])) {
        exit("<p>Error: {$m->error}");
    }
    if (!$m->attach($_FILES['attach2'])) {
        exit("<p>Error: {$m->error}");
    }
    if ($m->send()) {
        echo "<p>Okidokie :)";
    } else {
        echo "<p>Error: {$m->error}";
    }
} else {
    ?>
		<form method="POST" action="attachment.php" enctype="multipart/form-data">
			<input type="hidden" name="sendit" value="1" />
			
			<p>email from: <input type="text" name="from" value="" />