Hi,
hat jemand zufällig das price-calc plugin installiert?
Bei mir schickt er mit dem Formular leider keine E-Mail raus.
Läuft anscheinend alles über
PHP
<?php
class Mailer {
function send( $msg, $to = null ) {
$from = get_option( 'price-calc-email' );
if( !$to )
$to = $from;
$message .= "$msg\r\n\r\n";
$subject = get_option( 'price-calc-subject' );
$headers = "From: " . $from . "\r\n" . " Content-type: text/html\r\n" . " Reply-To: " . $from . "\r\n" . " X-Mailer: PHP/" . phpversion();
return @mail( $to, $subject, $message, $headers );
}
}
?>
Alles anzeigen
Kennt jemand die Problematik, dass keine E-Mails gesendet werden. Habe schon WP Mail SMTP installiert, hat aber auch nichts gebracht.
Für Tipps wäre ich sehr dankbar.
Grüße