Skip to content

Commit

Permalink
Merge pull request #2530 from devlab-oy/satu/maventa_error_mailiin
Browse files Browse the repository at this point in the history
Jos Maventa-laskun lähetys ei onnistu, ilmoitus sähköpostiin
  • Loading branch information
juppe committed May 27, 2015
2 parents f33dff9 + 93375ba commit 8fe7e81
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions verkkolasku_resend.php
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,38 @@
}

echo "Maventa-lasku $laskunro: $status<br>\n";

if ($status != 'OK: INVOICE CREATED SUCCESSFULLY') {

// Rakennetaan sähköpostiin lähetettävä virheviesti
$maventaerrorreport = t("Maventa-laskun %s lähetys epäonnistui", "", $laskunro)."!\n\n";
$maventaerrorreport .= t("Lähetetyn tiedoston nimi").": $lasku \n\n";

// Laitetaan sähköposti admin osoitteeseen siinä tapauksessa,
// jos talhal tai alert email osoitteita ei ole kumpaakaan setattu
$error_email = $yhtiorow["admin_email"];

if (isset($yhtiorow["talhal_email"]) and $yhtiorow["talhal_email"] != "") {
$error_email = $yhtiorow["talhal_email"];
}
elseif (isset($yhtiorow["alert_email"]) and $yhtiorow["alert_email"] != "") {
$error_email = $yhtiorow["alert_email"];
}

$params = array(
"to" => $error_email,
"subject" => t("Maventa-laskun %s lähetys epäonnistui", "", $laskunro),
"ctype" => "text",
"body" => $maventaerrorreport,
"attachements" => array(0 => array(
"filename" => "{$pupe_root_polku}/dataout/$lasku",
"newfilename" => ""))
);

pupesoft_sahkoposti($params);

}

$mavelask++;

// Pidetään sadan laskun jälkeen pieni paussi
Expand Down

0 comments on commit 8fe7e81

Please sign in to comment.