Hey Keith, If you can open a Public Issue Tracker <https://code.google.com/p/googleappengine/issues/list> thread using label "Restrict-View-EditIssue", posting an example message which fails in the thread, we'll be able to take a look and potentially get the issue resolved, if you've already configured bounce notifications and can confirm that it's not a case of the mail bouncing.
Regards, Nick Cloud Platform Community Support On Sunday, April 10, 2016 at 7:06:33 PM UTC-4, Keith Chan wrote: > > Using the following java code: > > Properties props = new Properties(); > Session session = Session.getDefaultInstance(props, null); > Message msg = new MimeMessage(session); > msg.setFrom(new InternetAddress(FROM_EMAIL, "Sender")); > msg.addRecipient(Message.RecipientType.TO, new InternetAddress(email, > name)); > msg.setSubject(title); > msg.setText(msgBody); > Transport.send(msg); > > If the msgBody contains a URL like > MyApplication.appspot.com > the message won't be received by the recipient, but system has no error log > If I change the content to: > MyApplication.appspot._com > then everything works fine > > This happens on both Java and Python, seems the email server has a filter > not sending message with valid URL. > > > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/96774260-c2c9-41a8-a93c-cb5b037dbf79%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
