Svelts_Contact_form_usnig_Aws_API_Gateway_and_Aws_Lamda

Svelts_contact_form_usnig_aws_api_gateway_and_aws_lamda

Svelts_Contact_form_usnig_Aws_API_Gateway_and_Aws_Lamda

Svelts_Contact_form_usnig_Aws_API_Gateway_and_Aws_Lamda

These are the Following Steps for creating Create Dynamic Contact Forms for S3 Static Websites Using AWS Lambda, Amazon API Gateway, and Amazon SES.

We are a preferred AWS consultant and offers the best cloud AWS consulting service. Our AWS-certified expert consultants conduct a thorough review and evaluation of your existing IT infrastructure and service interaction model to provide top-notch solutions.

Schedule your free consultation today!


Architecture Flow

Following is the architecture flow with detailed guidance.

archi

In the above diagram, the customer is submitting their inquiry through a “contact us” form, which is hosted in an Amazon S3 bucket as a static website. Information will flow in three simple steps:

  1. Your “contact us” form will collect all user information and post to Amazon API Gateway restful service.
  2. Amazon API Gateway will pass collected user information to an AWS lambda function.
  3. AWS Lambda function will auto generate an e-mail and forward it to your mail server using Amazon SES.

The Problem:

Having Contact Me like the one below is an integral part of most of the personal and small business websites that are built.

contact_form

I was building one such website, as the entire website is static, I honestly do not want to set up a server just to expose a single endpoint.

The solution:

I know that cloud functions are something that solves my problem of having an endpoint without actually setting up the server. I chose AWS Lambda as it was much popular. But, the resources and blogs were not enough to give me a step by step guideline.

What are we building?

We are going to build a node emailer service that accepts a message in our POST request body and triggers an email to the predefined set of recipients from your Gmail account. Setup Amazon SES

Table Of Contents

  1. AWS Account Setup.
  2. Setting up Lambda.
  3. Uploading the emailer code to your lambda.
  4. Setup Amazon SES.
  5. Creating AWS API Gateway
  6. Intigrate API Gateway with lambda.

1.AWS Account Setup:

Create an AWS account here. Your account setup will be complete with you entering your Credit card details and verifying your email. Charges are usage-based.

2.Setting up Lambda:

  1. Naviagte to AWS Console.
  2. Choose Lambda under the Find Services input field.
  3. You should now be on the lambda functions dashboard which shows the list of your available lambda functions.
  4. You should now be on the lambda functions dashboard which shows the list of your available lambda functions.
  5. In the next screen, fill in your Function name - emailer and choose Nodejs runtime as we are implementing this using node.
aws_lambda
  1. Now you can execute and test your AWS lambda function as directed in the AWS developer guide. Make sure to update the Lambda execution role and follow the steps provided in the Lambda developer guide to create a basic execution role.
  2. Add following code under policy to allow Amazon SES access to AWS lambda function:
aws_ses_policy
  1. On Clicking the Create function button you should see Successfully created the function emailer message on the next screen.
  2. On scrolling down the page, you will see a sample nodeJS code with index.js.
  3. Create a new test with any name of your choice and click on the Test button, you should be getting the response in the Execution Result tab.

3.Uploading the emailer code to your lambda:

The Aws lambda IDE for nodeJS does not allow us to install our npm packages on the go. Due to this, we have to get this set up locally in our machine and then upload the code to lambda by zipping it.

  1. Download the Zip. It contains the code to be uploaded to your lambda function.
  2. If you want to create the zip, the content is present inside this repo where there are a nodemailer dependency and some code to send an email. Make sure to npm install and create a zip from the root directory including your node_modules folder.
  3. Once you got the Zip, upload it to the AWS lambda using Actions -> Upload a .zip file option.
lambda_upload
  1. If you open index.js you should be able to see the code where we have given our Email credentials and sending an email.
  2. Headers are set to handle CORS errors if you try hitting your lambda from another origin.

4.Setup Amazon SES

Amazon SES requires that you verify your identities (the domains or email addresses that you send email from) to confirm that you own them, and to prevent unauthorized use. Follow the steps outlined in the Amazon SES user guide to verify your sender e-mail.

SES_Email

5.Creating AWS API Gateway:

  1. Create an API to expose this lambda function as a service.
  2. Click on Services -> API gateway service from the search bar -> Create API -> REST API -> Build -> API name -> Create.
  3. You should be on this screen now.
API api_created api_resource
  1. We need two methods to be created. 1.POST and 2.OPTIONS to handle CORS.

Creating POST:

  1. Actions -> Create Method -> POST -> TICK -> Integration type -> Lambda -> Lambda Function -> emailer -> Save -> OK.
api_lambda
  1. We need to allow few Headers so that they could be read by the client.
  2. Method Response -> Expand the Accordion next to 200.
api_header
  1. Add the following headers
header
  1. Go to Integration Response -> Expand Accordion -> Header Mappings -> Make the following.
header_domain
  1. If you have multiple headers being passed from your API, in order to consume them you have to enable it here.
  2. You can now do a test from the TEST option -> pass the following in the body.
test
  1. Click on Test -> you should get an Email with "HELLO" in the Message.
  2. Actions -> Deploy API -> Deployment Stage (New Stage) -> Dev as Stage Name -> Deploy.
  3. Your POST API is Now deployed.
  4. Copy the INVOKE URL.
api_url
  1. POST call this INVOKE URL with message param in body to send the email.

Connecting it all Together

Since we created our AWS Lambda function and provided the API-endpoint access using API gateway, it’s time to connect all the pieces together and test them.

trigger_api

now API_Gateway has been added as a triiger in lambda function. So now finally go to postman and select post method and enter the api url into postman and in body section add the code which is shown in the following attachements.

postman_api

finally i Got the mail in my mail box as shown in the attachement.

mail

Now you should be able to submit your contact form and start receiving email notifications when a form is completed and submitted.

Top categories

Loading Svelte Themes