from sendgrid import Sendgrid from sendgrid import Message
# make a secure connection to SendGrid s = sendgrid.Sendgrid('', '', secure=True) # make a message object message = sendgrid.Message("from@mydomain.com", "message subject", "plaintext message body", "<strong>HTML message body</strong>") # add a recipient message.add_to("someone@example.com", "John Doe") # use the Web API to send your message s.web.send(message)
Demonstrate your proficiency to design, build and manage solutions on Google Cloud Platform.