331A96E0-3037-43FC-8D93-543B900B11C9

😍 Loving this theme? Download

Please enter at least 3 characters.

Best Way to fix Blogger Contact form not Sending Messages

Blogger contact form is not sending messages. Fix that and use advanced google form to create customized contact form and set auto-reply to messages.
Best Way to fix Blogger Contact form not Sending Messages

 

Best Way to fix Blogger Contact form not Sending Messages
Recently, Google contact form for blogger is not sending messages when users hit send button. Years ago, I shared this tutorial Fix Blogger Contact Form (Send Button) Not Working and it was working smoothly, however, it is not the case now. You can give that article a shot, it might work for you.

My best way for fixing blogger contact form not sending messages is to stop using contact form provided by default in blogger.

Stick with me. That is so because it is not the first time google contact form is not working. And who knows a fix now might be not be viable for future.

The best alternative is Google Forms

I promise this article won't be just embedding google forms in your page. We are going to completely customize google form and remove Google watermarks. It will look just like blogger contact form but you can set more fields and options.

In short, we are going to achieve following:

  • Creating Google contact form and customizing.
  • Setting up Redirection when users send the message.
  • Getting responses on emails and replying them.

Here's the demo of our contact form page using google forms. It looks astonishing, right? You can send me a message via here.

Custom Contact Form Page for Blogger - Premium Design

Why Google Forms?

  • Google owns it.
  • Completely free.
  • 100% secure.
  • Trustworthy with users information (Uhh hmm..).

I learned a lot from this site on customizing google form.

For this article, we will use simple "Name","Email" and "Message" fields. You can add/remove more fields accordingly.

(1) Creating Google Contact form and Customization

You can head to Google Forms and click on "+".

Create Google form to use as blogger contact form

Go to "Settings" and enable "Collect email address by default".

Collect email address - blogger contact form

Head back to Questions and add ""Name" and "Message" section.

Fixing blogger send button not working

Now, you have a working Google contact form.

Let us make some changes and set it up to make it look like blogger contact form.

The skeleton of simple contact form is:

<form action="" method="post">
   <label>Name</label>
   <input name="name" required="required" type="text" />
   <br />
   <label>Email</label>
   <input name="email" required="required" type="email" />
   <br />
   <label>Message</label>
   <textarea autocomplete="off" name="message" required="required" rows="3" type="message"></textarea>          
   <input type="submit" value="Send" />
</form>

This outputs a simple contact form with "Name, Email and Message" fields. You can style with some CSS. 

Head back to the form you created earlier and hit that "Send" button and copy the form link as shown below.

Sending google form to blogger users.webp

Open the link you copied and fill out the fields with some entries (not mandatory, but easier to find IDs later) and right click anywhere and click on Inspect elements.


Customizing google form to use as blogger contact form

Select on body and right click and copy OuterHTML as shown below.

copy OuterHTML - google form

Open notepad and paste the code you copied and search for entry.. You will get two finds and in the value you will have that sample entries you inserted.

<input type="hidden" name="entry.1669102912" value="samplename">
<input type="hidden" name="entry.1767892478" value="samplemessage">

entry.xxxx is important for us. We will enter those values in name field of our form.

Go to blogger.com and create a page and paste following code in HTML mode. 

<style>
.myform input[type=text],
.myform input[type=email],
.myform textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	margin-top: 6px;
	margin-bottom: 16px;
	resize: vertical;
}

.myform input[type=submit] {
	background-color: #04AA6D;
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.myform input[type=submit]:hover {
	background-color: #45a049;
}
</style>
<form class='myform' action="https://docs.google.com/forms/d/e/1FAIpQLScf83DXyyzvgOZqbfHsu-uQWwQtNWJ_ZHqdWIemyOVRUtkAWA/formResponse">
   <label>Name</label>
   <input name="entry.xxxx" required="required" type="text" />
   <br />
   <label>Email</label>
   <input name="emailAddress" required="required" type="email" />
   <br />
   <label>Message</label>
   <textarea autocomplete="off" name="entry.xxxx" required="required" rows="3" type="message"></textarea>          
   <input type="submit" value="Send" />
</form>

You need to make 2 changes here:

  • Change action="https://docs.google.com/forms/d/e/1FAIpQLScf83DXyyzvgOZqbfHsu-uQWwQtNWJ_ZHqdWIemyOVRUtkAWA/formResponse" to action="your_link". You can get your link by clicking on 'eye' button on google form page.

Note: It is important to follow above link format, or else your form might not work. /formResponse must be used at the end.

  • Change name="entry.xxxx" with your values found from searching in notepad.

That's all. You now have a working form that collect responses. You can find responses on Response tab in Google form. Hold your cup because later I will explain how you can get emails and auto-reply.

If you want a more customized form like ours, follow this link:


(2) Setting up Redirection when users send the message

I looked on Stackoverflow and found this amazing solution that allows you to set custom page redirection when users click "Send" button.

Following is the code for that:

<script type="text/javascript">var submitted=false;</script>
<iframe id="hidden_iframe" name="hidden_iframe" onload="if(submitted)  {window.location='#your_redirection_link';}" style="display: none;"></iframe>
<form class='myform' action="https://docs.google.com/forms/d/e/1FAIpQLScf83DXyyzvgOZqbfHsu-uQWwQtNWJ_ZHqdWIemyOVRUtkAWA/formResponse" method="post" onsubmit="submitted=true;" target="hidden_iframe">
   <label>Name</label>
   <input name="entry.xxxxxxxx" required="required" type="text" />
   <br />
   <label>Email</label>
   <input name="emailAddress" required="required" type="email" />
   <br />
   <label>Message</label>
   <textarea autocomplete="off" name="entry.xxxxxxx" required="required" rows="3" type="message"></textarea>          
   <input type="submit" value="Send" />
</form>

Change #your_redirection_link with the link you want to redirect users when they send you a message.

(3) Get notified when someone contacts you and auto response - Google Forms

Yes, you can be notified when users hit that send button on google contact form and set auto responses to them. You can further communicate through Gmail.

Google forms allow to install Add-ons.

We will be using two add-ons - Form Notifications and Simple Form Notifications.

If you do not know how to install add-ons on google form, follow this guide:

Simple Form Notification - Get Notified When someone sends you message

Open "Simple Form Notification" and click "Add Notification".

Choose "Gmail" and Enter values on how you want to get notified. It is straight forward. Here's how notification looks when someone submits response.

Sending notification of google contact form


Form Notification - Set Auto Response

Open "Form Notification" and enable "Thank you email" and set auto enable message. That's all users will get auto response when they contact you. 

Check your 'sent' tab on gmail and you will have responded automatically. You can communicate further from there.

Setting auto response on google contact form
Though form notification allows you to enable send notification, I prefer Simple form notification because of its unique style and notification format.


Share this post

Explore more articles by Aman Bhattarai

11 comments

Please leave comments related to the content. All comments are highly moderated and visible upon approval.

Comment Shortcodes

  • To insert an image, add [img]image_link[/img]
  • To insert a block of code, add [pre]parsed_code[/pre]
  • To insert a link, add [link=your_link]link_text[/link]
  • To insert a quote, add [quote]quote_text[/quote]
  • To insert a code, add [code]parsed_code[/code]
  1. Thanks bro.
  2. I really wanted to do this, but after I did the Inspect, I was not presented with the screen shot you show. There was a narrow screen to the right that I could scroll down and saw Inherited from body.D8bnZd and below that some body entries, but right clicking gave a list of items to Copy, like selector, rule, all declarations, and all CC Changes, but no outer HTML. Help
    1. Hey, hit me a message. And send me screenshots too.
  3. I am using Windows 10 and can't accomplish the part where you select the body and copy the OuterHTML. I am just getting a small display on the far right. Has something changed?
  4. It's too complicated. A video tutorial could help a lot :(
    1. Hey, hit me a message. I can guide you through.
  5. ok
  6. Thank you so much It worked, Also thank you for that premium contact page code. You guys are awesome!
    1. Thanks @Muhammad. Do not forget to subscribe us.
  7. Nice info for the sharing by member jagodesain
    1. Hey @Asep, I am glad it helped you :)
Post a Comment