При отправке писем в GAE я получаю сообщение об ошибке ниже.Это перестало работать внезапно.Может кто-нибудь помочь мне понять, где может быть проблема или какие-либо идеи отладки будут оценены.Как видно из прикрепленного изображения, я хорошо справляюсь со своей квотой.
Ошибка ввода-вывода MailService (java.io.IOException: Внутренняя ошибка)
public boolean email(final Player to, List<Player> players)
{
Properties props = new Properties();
Session session = Session.getDefaultInstance(props, null);
try
{
Message msg = new MimeMessage(session);
msg.setFrom(new InternetAddress("validemail@gmail.com"));
msg.addRecipient(Message.RecipientType.TO, new InternetAddress(to.getEmail()));
msg.addRecipient(Message.RecipientType.CC, new InternetAddress("arav@yahoo.com"));
msg.addRecipient(Message.RecipientType.CC, new InternetAddress("validemail@gmail.com"));
msg.setSubject("Registration confirmation.");
msg.setText("tx for registering");
logger.info("sending email to " + to.getEmail());
logger.info(msgBody.toString());
Transport.send(msg);
logger.info("sent email to " + to.getEmail());
}
catch (AddressException e)
{
return false;
}
catch (MessagingException e)
{
return false;
}
return true;
}