Kannst du bitte die Einstellung des Moduls AboProdukt hier posten?
Versuche es bitte auch mal mit diesem Script und poste im Fehlerfall den REQUEST-String, welcher dir per Mail zugesendet werden müsste.
Code: Alles auswählen
<?php
$email = 'xxx@gmx.net';
if ($_REQUEST['typ'] == 'pay')
{
mail($email, 'Testmail pay', 'OK');
}
else if ($_REQUEST['typ'] == 'abo_firstbuy')
{
mail($email, 'Testmail abo_firstbuy', 'OK');
}
else if ($_REQUEST['typ'] == 'abo_rebuy')
{
mail($email, 'Testmail abo_rebuy', 'OK');
}
else if ($_REQUEST['typ'] == 'abo_expiration')
{
mail($email, 'Testmail abo_expiration', 'OK');
}
else
{
mail($email, 'Testmail kein Typ', print_r($_REQUEST, 1));
}
?>