Blogger send contact us details to mail

To send contact us details to a mail from a Blogger blog, you can follow these steps:

Method 1: Using the Blogger Contact Form

  1. Log in to your Blogger account and go to your blog's dashboard.
  2. Click on the "Settings" icon (looks like a gear) and select "Settings" from the dropdown menu.
  3. Scroll down to the "Comments" section and click on the "Contact form" tab.
  4. Fill in the contact form details, such as your name, email address, and message.
  5. Click on the "Send" button to send the contact form to your email address.

Method 2: Using a Third-Party Contact Form Plugin

  1. Install a third-party contact form plugin, such as "Contact Form 7" or "Fast Secure Contact Form", on your Blogger blog.
  2. Configure the plugin to send contact form submissions to your email address.
  3. Add the contact form to your blog's sidebar or footer using the plugin's settings.

Method 3: Using a Simple HTML Form

  1. Create a simple HTML form on your Blogger blog using the following code:

    <form action="mailto:[email protected]" method="post" enctype="text/plain">
    <label for="name">Name:</label>
    <input type="text" id="name" name="name"><br><br>
    <label for="email">Email:</label>
    <input type="email" id="email" name="email"><br><br>
    <label for="message">Message:</label>
    <textarea id="message" name="message"></textarea><br><br>
    <input type="submit" value="Send">
    </form>

    Replace "[email protected]" with your actual email address.

  2. Add the form to your blog's sidebar or footer using the Blogger editor.

In all cases, make sure to replace "[email protected]" with your actual email address where you want to receive the contact form submissions.