Multple occurances & email Config
Brought to you by:
cknudsen
Hi, we are running a couple of accurances of Webcalendar that is being hosted. What we would like to do is have each occurance be able to email theri regular accounts, (i.e JDOE@company1.com, JaneDoe@company2.com), I've tried specifing mail.company1.com with smpt auth parameters but can't get it to work. Is there something I am missing?? I apologize in advance if this is a dumb question, but I am new to your product, but I did find the doc on setting up email lacking in detail.
Thanks
Dar
I found the problem. I am not using stabdard smtp port (25) but instead port 587. Changed webcalmailer code from
global $EMAIL_MAILER, $mailerError,
$SMTP_AUTH, $SMTP_HOST, $SMTP_PASSWORD, $SMTP_USERNAME;
$mailerError = '';
$this->Version .= ' extended by ' . generate_application_name ( false );
$this->Host = $SMTP_HOST;
To
global $EMAIL_MAILER, $mailerError,
$SMTP_AUTH, $SMTP_HOST, $SMTP_PORT, $SMTP_PASSWORD, $SMTP_USERNAME;
$mailerError = '';
$this->Version .= ' extended by ' . generate_application_name ( false );
$this->Host = $SMTP_HOST;
$this->Port = $SMTP_PORT;
SMTP is working fine now.
Can you advice me how it will work with gmail?
Member fixed the problem.