Hey everyone,

As you're probably aware, some outbound mail from App Engine was being 
blocked. This was a result of some overzealous spam filters. We've re-tuned 
them. However, if you are still seeing problems, please email me at 
[email protected].

Also, the best way to make sure your (non-spam) emails have the greatest 
chance of being delivered is to make sure your account is in good standing. 
Enabling a billing account with a valid credit card on your account is one 
signal to us that you're not an abuser of the system. If you do enable 
billing and want to make sure you stay within the free tier of App Engine, 
you can easily set a spending limit 
<https://cloud.google.com/appengine/pricing#spending_limit> of $0 for your 
account.

-Kim
Product Manager, App Engine


On Friday, April 15, 2016 at 11:55:29 AM UTC-7, Keith Chan wrote:
>
> Hi Nick,
> Today the email problem is fixed.
>
> Thanks,
> Keith
>
> On Wednesday, April 13, 2016 at 10:27:11 AM UTC-7, Nick (Cloud Platform 
> Support) wrote:
>>
>> 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/fd3a3e26-3b06-4eac-b195-02298de7ae16%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to