1
0
Fork 0

Compare commits

..

No commits in common. "master" and "master" have entirely different histories.

1 changed files with 1 additions and 2 deletions

View File

@ -435,7 +435,7 @@ exec ($cmd);
$file = "$resultnam.pdf";
if ($_POST['sendmail']=='yes'){
$subj = "Kostenerstattungsantrag ueber ".calcSum()." ".$_POST['currency'];
$subj = "Kostenerstattungsantrag ueber".calcSum()." ".$_POST['currency'];
$mail = new PHPMailer\PHPMailer\PHPMailer();
@ -450,7 +450,6 @@ if ($_POST['sendmail']=='yes'){
$mail->IsSMTP();
$mail->setFrom($mailFrom);
$mail->Subject = $subj;
$mail->addCustomHeader('Auto-Submitted', 'auto-generated'); // comply to RFC 3834 (https://www.iana.org/assignments/auto-submitted-keywords/auto-submitted-keywords.xhtml)
$mail->Body = "Kostenerstattungsantrag ...";
$mail->AddAddress($mailDest);
if ($mailDestCC) {