mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-30 14:40:34 +02:00
make sure the mail object is ALWAYS created new, as it may cause problems with the sender information, if notification is running as cronjob and trying to notify users with different senderinformation
This commit is contained in:
@ -74,6 +74,11 @@ class notifications_email implements notifications_iface {
|
||||
{
|
||||
$this->mail = new send();
|
||||
}
|
||||
else
|
||||
{
|
||||
unset($this->mail);
|
||||
$this->mail = new send();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user