Using Exchange Web Services for email

My exchange administrators are saying that I need Appian to use Exchange Web Services. How can I get Appian to talk using this protocol?

Thanks in advance. I did a search and I didn't see anything after 2015...

OriginalPostID-258508

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer
    OR To check the connection with your code(not auto discover url!), Try to use below code to send the email. If email is received then the connection is established so we can think on other.

    EmailMessage msg= new EmailMessage(service);
    msg.getToRecipients().add("receiver@office.com");
               msg.setSubject("subject");
               msg.setBody(MessageBody.getMessageBodyFromText("Bodymessage"));
                                            msg.send();
Reply
  • 0
    Certified Lead Developer
    OR To check the connection with your code(not auto discover url!), Try to use below code to send the email. If email is received then the connection is established so we can think on other.

    EmailMessage msg= new EmailMessage(service);
    msg.getToRecipients().add("receiver@office.com");
               msg.setSubject("subject");
               msg.setBody(MessageBody.getMessageBodyFromText("Bodymessage"));
                                            msg.send();
Children
No Data