Fix invalid "emailer_prepare" Hook
- Use IEmail instead of array data - Introduce "composer" based library for phpmailer
This commit is contained in:
parent
db9f75fbdb
commit
f6aea0d65a
|
@ -475,7 +475,7 @@ Eine komplette Liste aller Hook-Callbacks mit den zugehörigen Dateien (am 01-Ap
|
||||||
|
|
||||||
### src/Util/Emailer.php
|
### src/Util/Emailer.php
|
||||||
|
|
||||||
Hook::callAll('emailer_send_prepare', $params);
|
Hook::callAll('emailer_send_prepare', $email);
|
||||||
Hook::callAll("emailer_send", $hookdata);
|
Hook::callAll("emailer_send", $hookdata);
|
||||||
|
|
||||||
### src/Util/Map.php
|
### src/Util/Map.php
|
||||||
|
|
|
@ -132,4 +132,25 @@ class Email implements IEmail
|
||||||
|
|
||||||
return $newEmail;
|
return $newEmail;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a new Email instance based on a given prototype
|
||||||
|
*
|
||||||
|
* @param static $prototype The base prototype
|
||||||
|
* @param array $data The delta-data (key must be an existing property)
|
||||||
|
*
|
||||||
|
* @return static The new email instance
|
||||||
|
*/
|
||||||
|
public static function createFromPrototype(Email $prototype, array $data = [])
|
||||||
|
{
|
||||||
|
$newMail = clone $prototype;
|
||||||
|
|
||||||
|
foreach ($data as $key => $value) {
|
||||||
|
if (property_exists($newMail, $key)) {
|
||||||
|
$newMail->{$key} = $value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $newMail;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,11 +45,9 @@ class Emailer
|
||||||
*/
|
*/
|
||||||
public function send(IEmail $email)
|
public function send(IEmail $email)
|
||||||
{
|
{
|
||||||
$params['sent'] = false;
|
Hook::callAll('emailer_send_prepare', $email);
|
||||||
|
|
||||||
Hook::callAll('emailer_send_prepare', $params);
|
if (empty($email)) {
|
||||||
|
|
||||||
if ($params['sent']) {
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue