1. Learn
  2. /
  3. Courses
  4. /
  5. Introduction to AWS Boto in Python

Exercise

Sending a single SMS message

Elena asks Sam outside of work (per regulation) to send some thank you SMS messages to her largest donors.

Sam believes in Elena and her goals, so she decides to help.

She decides writes a quick script that will run through Elena's contact list and send a thank you text.

Since this is a one-off run and Sam is not expecting to alert these people regularly, there's no need to create a topic and subscribe them.

Sam has created the boto3 SNS client and stored it in the sns variable. The contacts variable contains Elena's contacts as a DataFrame.

Help Sam put together a quick hello to Elena's largest supporters!

Instructions

100 XP
  • For every contact, send an ad-hoc SMS to the contact's phone number.
  • The message sent should include the contact's name.