mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-07 15:25:31 +08:00
20 lines
723 B
PHP
20 lines
723 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
class desktop_email_emailconf{
|
||
|
||
function get_emailConfig(){
|
||
$app = app::get('desktop');
|
||
$aTmp['usermail'] = $app->getConf('email.config.usermail');
|
||
$aTmp['smtpport'] = $app->getConf('email.config.smtpport');
|
||
$aTmp['smtpserver'] = $app->getConf('email.config.smtpserver');
|
||
$aTmp['smtpuname'] = $app->getConf('email.config.smtpuname');
|
||
$aTmp['smtppasswd'] = $app->getConf('email.config.smtppasswd');
|
||
$aTmp['sendway'] = $app->getConf('email.config.sendway') ? $app->getConf('email.config.sendway') : 'mail';
|
||
return $aTmp;
|
||
}
|
||
} |