June 23, 201312 yr Newbies hello, sorry for my english. I do not understand this error message:  com.sun.mail.smtp.SMTPSendFailedException: 550 5.1.0 rqh41l01F0GUpSf01qh5vg authentication failed   Parameters: {[email protected], [email protected], subject=Prova invio mail html formated, htmlBody=I'm testing the <em>Sending Email <strong>HTML-Formatted</strong></em> utility for <a href="http://360works.com/scriptmaster">ScriptMaster</a>. Works great!, smtpHost=smtp.iproduct.it}  ---Script--- Script: import javax.mail.*; import javax.mail.internet.*;  Properties props = new Properties(); props.setProperty("mail.smtp.host", smtpHost);  MimeMessage msg = new MimeMessage(Session.getInstance(props)); msg.setContent(htmlBody, "text/html"); msg.setSubject(subject); msg.setFrom(new InternetAddress(from)); msg.setRecipient(Message.RecipientType.TO, new InternetAddress(to)); Transport.send(msg); return true;   FM 10 Adv with 360 4
June 24, 201312 yr Newbies Looks like an authentication error to me. Have you set the smtp username and password? This post might be useful; http://fmforums.com/forum/topic/60018-sending-emails-with-scriptmaster/
June 24, 201312 yr Author Newbies filemaker old file (2012) I had used variables with user and password. Now the plugin does not work. for this reason I have made some tests with the new SCRIPTMASTER, but here I can not find fields for username and password.
Create an account or sign in to comment