mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-23 07:09:20 +01:00
dont try to send if there is no smtpAccount
This commit is contained in:
parent
52a0c998ee
commit
abd6800a89
@ -444,6 +444,11 @@ class egw_mailer extends Horde_Mime_Mail
|
||||
try
|
||||
{
|
||||
$smtpAcc = emailadmin_account::get_default(true,false,false);
|
||||
if (!$smtpAcc)
|
||||
{
|
||||
error_log(__METHOD__.__LINE__.'#'." Error: no SMTP Account available for ".__METHOD__);
|
||||
return false;
|
||||
}
|
||||
//error_log(__METHOD__.__LINE__.'#'.array2string($smtpAcc));
|
||||
$mail = new egw_mailer($smtpAcc);
|
||||
$method = array();
|
||||
|
Loading…
Reference in New Issue
Block a user