通过云存储桶更改通过云功能发送邮件

问题描述 投票:1回答:1

我试图配置云功能,以便在不使用第三方工具的情况下将文件推送到GCP中的我们的一个云存储桶中时就发送邮件。我在这里检查了概念,并确保我的发件人电子邮件已注册为授权发件人。

https://cloud.google.com/appengine/docs/standard/python/mail/sending-mail-with-mail-api

[requirements.txt已添加以下值:

google-cloud-storage==1.23.0
googleapis-common-protos==1.3.5
google-api-python-client

在需求文件中。但是仍然出现相同的错误。

但是,当我尝试使用以下脚本,但最终出现此错误时:

ModuleNotFoundError: No module named 'google.appengine' .

提前了解您的建议和帮助。


from google.appengine.api import app_identity
from google.appengine.api import mail
import webapp2


def send_approved_mail(sender_address):
    # [START send_mail]
    mail.send_mail(sender=sender_address,
                   to="Albert Johnson <[email protected]>",
                   subject="Your account has been approved",
                   body="""Dear Albert:
Your example.com account has been approved.  You can now visit
http://www.example.com/ and sign in using your Google Account to
access new features.
Please let us know if you have any questions.
The example.com Team
""")
    # [END send_mail]


class SendMailHandler(webapp2.RequestHandler):
    def get(self):
        send_approved_mail('{}@appspot.gserviceaccount.com'.format(
            app_identity.get_application_id()))
        self.response.content_type = 'text/plain'
        self.response.write('Sent an email to Albert.')


app = webapp2.WSGIApplication([
    ('/send_mail', SendMailHandler),
], debug=True)

python google-cloud-functions google-cloud-storage sendmail
1个回答
0
投票

您将要与诸如Sendgrid之类的第三方电子邮件服务集成,并将您的Cloud Function构建为Cloud Function,例如:

# using SendGrid's Python Library
# https://github.com/sendgrid/sendgrid-python
import os
from sendgrid import SendGridAPIClient
from sendgrid.helpers.mail import Mail

sg = SendGridAPIClient(os.environ.get('SENDGRID_API_KEY'))

def send_mail(data, context):
    message = Mail(
        from_email='[email protected]',
        to_emails='[email protected]',
        subject='This is the subject',
        html_content='This is the content'
    )
    response = sg.send(message)

请参见https://cloud.google.com/functions/docs/tutorials/sendgrid以获取更多详细信息。

© www.soinside.com 2019 - 2024. All rights reserved.