hallo zusammen
ich habe zurzeit einen php formmailer der keine html sondern nur text mails versendet.
mir wurde gesagt, dass ich für html mails folgendes anwenden soll:
// includieren der PEAR Klassen
include('Mail.php');
include('Mail/mime.php');
//Generieren des HTML-Codes für die html-var
ob_start();
<html>u.s.w.</html>
$output = ob_get_contents();
ob_end_clean();
//Rest fertig machen
$text = 'Text version of email';
$html = $output;
$file = 'kein Ahnung.txt';
$crlf = "\n";
$hdrs = array(
'From' => 'from@example.com',
'Subject' => 'Betreff eintragen'
);
$mime = new Mail_mime($crlf);
$mime->setTXTBody($text);
$mime->setHTMLBody($html);
$mime->addAttachment($file, 'text/plain');
$body = $mime->get();
$hdrs = $mime->headers($hdrs);
$mail =& Mail::factory('mail');
$mail->send('an@example.com', $hdrs, $body);
echo "Mail versendet an wenauchimmer@example.com";
ich habe im moment 1 php datei, doch wo muss ich nun was einfügen?
Danke für eure hilfe!