Okay
  Public Ticket #2704014
Outlook Integration
Closed

Comments

  • Suzanna started the conversation

    I have added the Outlook integration according to Amelia instructions. I receive errors when trying to log into Outlook as an Employee. I am unable to connect Outlook calendar to Employee.

  • [deleted] replied

    Hello Suzanna,

    thank you for reaching out to us.

    WP Mail SMTP Pro doesn't redirect the URI correctly. They need to check if it's their scope or not, but they're not doing that.

    Please go to ..wp-content/plugins/wp-mail-smtp-pro/src/Pro/Providers/Providers.php and find this method:

    process_auth_code

    You need to add this to that method:

    if (explode('-', $_GET['state'])[0] === 'amelia') {
        return;
    }
    

    Like this:

    8112194026.jpg