Jinn
Jinn

Reputation: 5

How do I receive email from google cloud platform bucket

We want to receive email automatically whenever new files are uploaded to the buckets from our clients, would it be possible? Thanks so much for any help.

Upvotes: 0

Views: 487

Answers (1)

Hsn
Hsn

Reputation: 1238

You need to trigger a google cloud functions whenever there is some event in the bucket, in your case whenever a file is created. Then you can have your logic of sending an email in your google cloud functions.

For more info: https://cloud.google.com/functions/docs/calling/storage#functions-calling-storage-python

Upvotes: 1

Related Questions