Menu

#301 Multple occurances & email Config

closed
nobody
None
5
2011-06-06
2010-12-23
Darwood
No

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

Discussion

  • Darwood

    Darwood - 2010-12-25

    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.

     
    • Manish Jain

      Manish Jain - 2015-11-18

      Can you advice me how it will work with gmail?

       
  • Ray Jones

    Ray Jones - 2011-06-06
    • status: open --> closed
     
  • Ray Jones

    Ray Jones - 2011-06-06

    Member fixed the problem.

     

Log in to post a comment.

Auth0 Logo