mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:42 +01:00
Notifications: Add configuration for account / address to use for sending notification emails
If the app specifies a different sender (Calendar) that is still used instead.
This commit is contained in:
parent
9244b8604f
commit
7d15c2f352
@ -215,6 +215,14 @@ class notifications {
|
||||
* it's an int with the account id or the e-mail address of a non-eGW user
|
||||
*/
|
||||
public function set_sender($_sender) {
|
||||
// Check configured sender first - that overrides all
|
||||
$config = Api\Config::read('notifications');
|
||||
if($config && ($config['async_account' || $config['async_email']]))
|
||||
{
|
||||
$send_user = $config['async_account'];
|
||||
$email = $config['async_email'] ?: $GLOBALS['egw']->accounts->id2name($send_user,'account_email');
|
||||
}
|
||||
|
||||
if(is_object($_sender)) {
|
||||
$this->sender = $_sender;
|
||||
return true;
|
||||
|
@ -76,7 +76,21 @@ class notifications_email implements notifications_iface {
|
||||
{
|
||||
unset($this->mail);
|
||||
}
|
||||
$this->mail = new Api\Mailer();
|
||||
|
||||
// Use configured mail ac
|
||||
$ident = null;
|
||||
if($this->config->async_account)
|
||||
{
|
||||
$mail_identities = Api\Mail\Account::identities([], true, 'params', $this->config->async_account);
|
||||
foreach ($mail_identities as $mi)
|
||||
{
|
||||
if ($mi['ident_email'] == $this->config->async_email || !$this->config->async_email)
|
||||
{
|
||||
$ident = Api\Mail\Account::read($mi['acc_id']);
|
||||
}
|
||||
}
|
||||
}
|
||||
$this->mail = new Api\Mailer($ident);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -31,6 +31,17 @@
|
||||
<option value="True">Yes</option>
|
||||
</select>
|
||||
</row>
|
||||
<row>
|
||||
<description value="Account" span="all" class="subHeader"/>
|
||||
</row>
|
||||
<row>
|
||||
<description value="User to use for async notifications"/>
|
||||
<select-account id="newsettings[async_account]"/>
|
||||
</row>
|
||||
<row>
|
||||
<description value="Email address to use for async notifications"/>
|
||||
<url-email id="newsettings[async_email]"/>
|
||||
</row>
|
||||
<row>
|
||||
<description value="Signature" span="all" class="subHeader"/>
|
||||
</row>
|
||||
|
Loading…
Reference in New Issue
Block a user