0

I have created a receiving email app with Google App Engine using the doc (https://cloud.google.com/appengine/docs/standard/python/mail/receiving-mail-with-mail-api).

I want to receive emails using my custom domain. What should be mx settings? Can anyone help me? Thanks in advance.

selmanceker
  • 61
  • 1
  • 3
  • You should use a third party email service provider like Sendgrid to receive email at your GAE app. GAE provides very limited email services. – new name Jan 18 '19 at 19:00

2 Answers2

0

I have never configured MX records for App Engine. However, Internet mail does not know or care about App Engine.

Your MX record will look like this:

Type: MX
TTL: 86400
Preference: 10
mail server: Public IP address of your instance or the domain name.
John Hanley
  • 74,467
  • 6
  • 95
  • 159
0

email forwarding is a feature of registars and mail servers, you cannot set this up in GCP without having setup a mail server first. If you use the free Gmail service to manage emails, check this tutorial on how to proceed with some known registrar.

alp
  • 642
  • 5
  • 13