use MailApi to generate mail messages and send mails with PHPMailer
This commit is contained in:
parent
ad815e4c99
commit
36597d7b84
6 changed files with 4679 additions and 12 deletions
|
|
@ -296,6 +296,22 @@
|
|||
'db' => 'z'
|
||||
);
|
||||
|
||||
|
||||
/**
|
||||
* Mailserver connection settings
|
||||
*
|
||||
* @static
|
||||
* @var array
|
||||
*/
|
||||
public static $mail = array(
|
||||
'host' => 'mail.uni-duesseldorf.de',
|
||||
'port' => 465,
|
||||
'username' => 'questlab',
|
||||
'password' => 'vn0yy2*z',
|
||||
'secure' => 'ssl',
|
||||
'charset' => 'UTF-8'
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue