siehe auch IPC Hilfe
// Manager -> EMail Manager
// send EMail from..
$EMail['FROM'] = "NAME";
$EMail['FROMNAME'] = "NAME";
// use SMTP: true / false
$EMail['SMTP'] = "true";
// SMTP Secure only if SMTP=true - leave empty or set ssl / tls
$EMail['SMTPSecure'] = "ssl";
// SMTP HOST only if SMTP=true
$EMail['HOST'] = "smtp.gmail.com";
// SMTP PORT only if SMTP=true and not default 25
$EMail['PORT'] = "465";
// SMTP USER only if SMTP=true
$EMail['USER'] = "username";
// SMTP PASS only if SMTP=true
$EMail['PASS'] = "passwort";