Hi everyone, please check out our new discussion forum located in our GitHub site: https://github.com/nextgenhealthcare/connect/discussions. Let us know your feedback as we try out this new part of GitHub! Don't worry, the content in these forums won't be going away and will at a minimum be preserved for historical reference.
I have double checked and tripled check my configuration for SMTP auth to use sbcglobal (AT&T) to mess around with sending out emails from Mirth with no luck.. I get authorization required in the console output, but confirmed my setup.
There is not a lot there in regards to configuring SMTP in the GUI, or much that shows up in server.properties either...
Anybody have any luck with SBC Global and smtp ????
To be clear, I thought that SMTP sender used the settings from server.properties ... then I could call something like the below in javascript...
Code:
var to = "[email protected]";
var cc = "[email protected]";
var from = "[email protected]";
var subject = "Patient Alert";
var body = "Patient Body hl7_xml['PV1']['PV1.3']['PL.1']";
var smtpConn = SMTPConnectionFactory.createSMTPConnection();
smtpConn.send('to', 'cc', 'from', 'subject', 'body');
WARN com.webreach.mirth.server.util.SMTPConnection: Could not send email message.
com.sun.mail.smtp.SMTPSendFailedException: 530 authentication required - for help go to [url]http://help.yahoo.com/help/us/sbc/dsl/mail/pop/pop-11.html[/url]
at com.sun.mail.smtp.SMTPTransport.issueSendCommand(SMTPTransport.java:1333)
at com.sun.mail.smtp.SMTPTransport.mailFrom(SMTPTransport.java:906)
at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:535)
We process personal data about users of our site, through the use of cookies and other technologies, to deliver our services, personalize advertising, and to analyze site activity. We may share certain information about our users with our advertising and analytics partners. For additional details, refer to our Privacy Policy.
By clicking "I AGREE" below, you agree to our Privacy Policy and our personal data processing and cookie practices as described therein. You also acknowledge that this forum may be hosted outside your country and you consent to the collection, storage, and processing of your data in the country where this forum is hosted.
Comment