d4k4
Erfahrenes Mitglied
Also mit unterm skript kann ich ja html emails verschicken:
mail('$to', '$betreff',
"<html><body><p>Die<i>Nachricht</i>hier.</p></body></html>",
"From: Mir\n" .
"MIME-Version: 1.0\n" .
"Content-type: text/html; charset=iso-8859-1");
meine frage ist jetzt, ob ich den html datei nicht einfach als html-datei anhängen kann also :
$file = "text.hmtl";
mail('$to', '$betreff',
"$file",
"From: Mir\n" .
"MIME-Version: 1.0\n" .
"Content-type: text/html; charset=iso-8859-1");
mail('$to', '$betreff',
"<html><body><p>Die<i>Nachricht</i>hier.</p></body></html>",
"From: Mir\n" .
"MIME-Version: 1.0\n" .
"Content-type: text/html; charset=iso-8859-1");
meine frage ist jetzt, ob ich den html datei nicht einfach als html-datei anhängen kann also :
$file = "text.hmtl";
mail('$to', '$betreff',
"$file",
"From: Mir\n" .
"MIME-Version: 1.0\n" .
"Content-type: text/html; charset=iso-8859-1");