31
Bei mir kommt < 1 2 3 5. Auf die email warte ich noch.
if (mail($e_to, $subject, $message, 'From: ' . $e_from . "\r\n" . 'Content-Type: text/plain; charset=utf-8', $pars)) {
$b_return = true;
}
if (mail($e_to, $subject, $message, 'From: ' . $e_from . "\r\n" . 'Content-Type: text/plain; charset=utf-8')) {
$b_return = true;
}
if (mail($e_to, $subject, $message, 'From: ' . $e_from . "\r\n" . 'Content-Type: text/plain; charset=utf-8')) {
$b_return = true;
}
function fmail($message, $subject = 'Forennachricht', $e_to = E_ADMINTO, $e_from = E_ADMINFROM)
{
global $mailenabled, $e_envelope;
$b_return = false;
if ($mailenabled == 1) {
if (function_exists('mb_encode_mimeheader')) {
mb_internal_encoding('UTF-8');
$subject = mb_encode_mimeheader($subject, 'UTF-8');
}
$message = wordwraputf8($message);
$pars = null;
if ($e_envelope) {
$pars = '-f' . $e_envelope;
}
if (mail($e_to, $subject, $message, 'From: ' . $e_from . "\r\n" . 'Content-Type: text/plain; charset=utf-8')) {
$b_return = true;
}
}
return $b_return;
}
Thema | Autor | Forum | Beiträge | Letzter Beitrag |
---|---|---|---|---|
Changelog 2.0 | Jörg Kruse | Changelogs | 5 | 31.12.2011 17:05 |