This is a sample mobile application that demonstrates how to use Amazon SES to record user feedback using the AWS iOS SDK.
For a more detailed description of the code, please visit this online article.
- Open the
FeedbackForm/FeedbackForm.xcodeproj
project file in Xcode. - Configure the sample with your AWS security credentials:
- Open the
Constants.h
file. - Modify the
ACCESS_KEY
andSECRET_KEY
definitions with your AWS Credentials.
DO NOT EMBED YOUR CREDENTIALS IN PRODUCTION APPS. - (Verify your email address if you haven't done it before:)
- Go to AWS SES Console
- Click "Email Addresses" Under "Verified Senders" section on left of the screen.
- Click "Verify a New Email Address" and then enter your email address.
- Go to your email inbox and click the link to verify this address.
- Modify the
VERIFIED_EMAIL
definitions with your verified email address.
- Open the
- Add the AWS SDK for iOS Frameworks to the sample.
- In the Project Navigator, Right-Click on the Frameworks group.
- In the Menu select Add Files to "FeedbackForm"
- Navigate to the location where you downloaded and expanded the AWS SDK for iOS.
- Select the follwing frameworks and click Add:
- AWSRuntime.framework
- AWSSES.framework
- Run the project.