feat(email) add additional recipients and update email messages for Verua team's communication
This commit is contained in:
parent
11263565b3
commit
644dd210b1
2 changed files with 9 additions and 1 deletions
|
|
@ -56,7 +56,7 @@ try {
|
|||
// Invalid input
|
||||
throw new Exception('Ungültige Eingabedaten.');
|
||||
}
|
||||
|
||||
// TODO SMTP von Verua verwenden
|
||||
// Server settings
|
||||
//$mail->SMTPDebug = SMTP::DEBUG_SERVER; // Enable this for detailed debugging
|
||||
$mail->isSMTP(); // Use SMTP
|
||||
|
|
@ -70,6 +70,8 @@ try {
|
|||
// Recipients
|
||||
$mail->setFrom($email, $name); // Sender address
|
||||
$mail->addAddress('ah@mediendesign-hnida.de', 'Andreas Hnida'); // Add recipient
|
||||
$mail->addAddress('bettina.rasberger@rabe-web.ch', 'Bettina Rasberger'); // Add another recipient
|
||||
$mail->addAddress('norbert.wagner@verua.ch'); // Add another recipient
|
||||
$mail->addReplyTo($email, $name); // Set reply address
|
||||
$mail->addBCC('ah@mediendesign-hnida.de'); // Add bounce email address as BCC
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue