{"id":828,"date":"2020-06-23T09:20:58","date_gmt":"2020-06-23T03:50:58","guid":{"rendered":"https:\/\/myfreeonlinetools.com\/blog\/?p=828"},"modified":"2020-09-06T10:32:44","modified_gmt":"2020-09-06T05:02:44","slug":"send-mail-using-jquery-ajax-php-mail-function-submit-form","status":"publish","type":"post","link":"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/","title":{"rendered":"Send Mail by JavaScript AJAX PHP Mail Function by Submit form"},"content":{"rendered":"<h2>JQuery AJAX and PHP Code for Contact Form<\/h2>\n<p>Ajax (Asynchronous JavaScript and XML) means by send or receive data with the server without refreshing or reloading the web page. In this post explain about form data submitted using by Ajax and using mail function for send email.<\/p>\n<p>In this post also given code with an example of how to contact form collecting user queries and data after submitting the contact form.<\/p>\n<p>These form data will send to PHP page (submitForm.php) through jQuery Ajax and also show the response to Ajax. Also improve the output format of email better and make it a beautiful HTML formated Email.<\/p>\n<h3>Query Ajax Contact Form<\/h3>\n<p>This contact form contains input fields to get user information and feedback. It triggers AJAX call on the click of its send button.<\/p>\n<pre>&lt;form id=\"contactFreeOnlineForm\" class=\"contactFreeOnlineForm\"\r\nname=\"contactFreeOnlineForm\"&gt;\r\n&lt;div class=\"row\"&gt;\r\n&lt;div class=\"col-md-12 contactFieldMain\"&gt;\r\n&lt;label for=\"contactTextarea\"&gt;Enter Your Text&lt;\/label&gt;\r\n&lt;div class=\"contactFormField\"&gt;&lt;textarea id=\"contactTextarea\"&gt;\r\n&lt;\/textarea&gt;&lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;div class=\"row\"&gt;\r\n&lt;div class=\"col-md-3 contactFieldMain\"&gt;\r\n&lt;label for=\"name\"&gt;Name&lt;\/label&gt; \r\n&lt;div class=\"contactFormField\"&gt;&lt;input type=\"text\" id=\"name\" \/&gt;\r\n&lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;div class=\"col-md-3 contactFieldMain\"&gt;\r\n&lt;label for=\"email\"&gt;Email&lt;\/label&gt; \r\n&lt;div class=\"contactFormField\"&gt;&lt;input type=\"email\" id=\"email\" \/&gt;\r\n&lt;\/div&gt;\r\n&lt;\/div&gt; \r\n&lt;div class=\"col-md-4 contactFieldMain\"&gt;\r\n&lt;label for=\"email\"&gt;Subject&lt;\/label&gt; \r\n&lt;div class=\"contactFormField\"&gt;&lt;input type=\"text\" id=\"subject\" \/&gt;\r\n&lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;div class=\"col-md-2 contactFieldMain\"&gt;\r\n&lt;div class=\"contactFormField\"&gt;&lt;input type=\"button\" value=\"Send\" \r\nonclick=\"sendMail()\"\/&gt;&lt;\/div&gt;\r\n&lt;\/div&gt; \r\n&lt;\/div&gt;\r\n&lt;div class=\"row\"&gt;\r\n&lt;div class=\"col-md-12\"&gt;\r\n&lt;div id=\"emailSendResult\"&gt;&lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;\/form&gt;<\/pre>\n<h3>jQuery AJAX Send Data to PHP file by Event Handler<\/h3>\n<p>Below code validate contact form and send AJAX Request to PHP (submitForm.php) page. Its work collect contact form input fields information and send to PHP page which having PHP Mail function.<\/p>\n<pre> function sendMail(){\r\nvar getname = jQuery('#name').val();\r\nvar getemail = jQuery('#email').val();\r\nvar gettext = jQuery('#contactTextarea').val();\r\nvar getSubject = jQuery('#subject').val();\r\nif(getname != '' &amp;&amp; getname != '' &amp;&amp; getname != ''){\r\njQuery('#emailSendResult').html('Mail Sending...');\r\n$.ajax({\r\nurl:'submitForm.php',\r\ndata:{ name:getname, email:getemail, message:gettext, subject:getSubject},\r\nmethod: 'POST',\r\nsuccess: function(data){\r\njQuery('#emailSendResult').html(data);\r\n}\r\n});\r\n}else{\r\njQuery('#emailSendResult').html('Please Enter All Required Fields.');\r\n}\r\n}<\/pre>\n<h3>Code for HTML Formated Email<\/h3>\n<h4>PHP Code for Sending Contact Mail by using the mail function.<\/h4>\n<p>&nbsp;<\/p>\n<pre>&lt;?php \r\nob_start(); \r\nerror_log();\r\nif(isset($_POST['name']) &amp;&amp; isset($_POST['email'])){\r\n\r\n$name = $_POST['name'];\r\n$email = $_POST['email'];\r\n$subject = $_POST['subject'];\r\n$message = $_POST['message'];\r\n\r\n$mailHeading = 'MyFreeOnlineTools Contact Form';\r\n$headers = 'MIME-Version: 1.0' . \"\\r\\n\";\r\n$headers .= 'Content-type: text\/html; charset=iso-8859-1' . \"\\r\\n\";\r\n$headers .= 'From: MyFreeOnlineTools &lt;mailmyfreeonlinetools.com&gt;' . PHP_EOL .\r\n'Reply-To: MyFreeOnlineTools &lt;mailmyfreeonlinetools.com&gt;' . PHP_EOL .\r\n'X-Mailer: PHP\/' . phpversion();\r\n\r\n$to = 'mailmyfreeonlinetools@gmail.com'; \r\n\r\n\r\n$messageSent = '&lt;div&gt;Name Sender : '.$name .'&lt;\/div&gt;&lt;div&gt; Name Email : '.$email.' &lt;\/div&gt;&lt;div&gt;Mail Subject : '.$subject.'&lt;\/div&gt;&lt;div&gt; Message : &lt;br\/&gt; '.$message.'&lt;\/div&gt;';\r\n\r\nif( $name != '' || $message != '' || $email != ''){\r\nmail($to,$subject,$messageSent,$headers);\r\necho 'Mail Send I Will Get Back to You....';\r\n} \r\n}\r\n\r\n?&gt;<\/pre>\n<p>For more details click below link <a href=\"https:\/\/www.w3schools.com\/php\/func_mail_mail.asp\">PHP Mail Function<\/a><\/p>\n<p>In the PHP mail function, last parameter is optional but if required when sending HTML format email. So the developer pass along with content Type declaration its tells email client to parse the email as HTML format.<\/p>\n<p><a href=\"https:\/\/myfreeonlinetools.com\/contact-us\/\" target=\"_blank\" rel=\"noopener noreferrer\">View Demo<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>JQuery AJAX and PHP Code for Contact Form Ajax (Asynchronous JavaScript and XML) means by send or receive data with the server without refreshing or reloading the web page. In [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":841,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[30,29],"tags":[],"class_list":["post-828","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ajax","category-php"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Send Mail by JavaScript AJAX PHP Mail Function by Submit form - MyFreeOnlineTools<\/title>\n<meta name=\"description\" content=\"Using JQuery AJAX and PHP Code for submiting Contact Form data and send mail\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Send Mail by JavaScript AJAX PHP Mail Function by Submit form - MyFreeOnlineTools\" \/>\n<meta property=\"og:description\" content=\"Using JQuery AJAX and PHP Code for submiting Contact Form data and send mail\" \/>\n<meta property=\"og:url\" content=\"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/\" \/>\n<meta property=\"og:site_name\" content=\"MyFreeOnlineTools\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/LearnSchoolOnline\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-06-23T03:50:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-09-06T05:02:44+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2020\/06\/jquery-ajax-php-code-for-contact-form.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"400\" \/>\n\t<meta property=\"og:image:height\" content=\"225\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"myfreeonlinetools\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"myfreeonlinetools\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/\"},\"author\":{\"name\":\"myfreeonlinetools\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/b1eb72e57c554e3b33cfeec477efcc3c\"},\"headline\":\"Send Mail by JavaScript AJAX PHP Mail Function by Submit form\",\"datePublished\":\"2020-06-23T03:50:58+00:00\",\"dateModified\":\"2020-09-06T05:02:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/\"},\"wordCount\":252,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2020\/06\/jquery-ajax-php-code-for-contact-form.jpg\",\"articleSection\":[\"AJAX\",\"PHP\"],\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/\",\"url\":\"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/\",\"name\":\"Send Mail by JavaScript AJAX PHP Mail Function by Submit form - MyFreeOnlineTools\",\"isPartOf\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2020\/06\/jquery-ajax-php-code-for-contact-form.jpg\",\"datePublished\":\"2020-06-23T03:50:58+00:00\",\"dateModified\":\"2020-09-06T05:02:44+00:00\",\"description\":\"Using JQuery AJAX and PHP Code for submiting Contact Form data and send mail\",\"breadcrumb\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/#primaryimage\",\"url\":\"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2020\/06\/jquery-ajax-php-code-for-contact-form.jpg\",\"contentUrl\":\"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2020\/06\/jquery-ajax-php-code-for-contact-form.jpg\",\"width\":400,\"height\":225,\"caption\":\"Send Mail by JavaScript AJAX PHP Mail Function by Submit form\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/myfreeonlinetools.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Send Mail by JavaScript AJAX PHP Mail Function by Submit form\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#website\",\"url\":\"https:\/\/myfreeonlinetools.com\/blog\/\",\"name\":\"MyFreeOnlineTools\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/myfreeonlinetools.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#organization\",\"name\":\"MyFreeOnlineTools\",\"url\":\"https:\/\/myfreeonlinetools.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/11\/myfreeonlinetools-blue.png\",\"contentUrl\":\"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/11\/myfreeonlinetools-blue.png\",\"width\":387,\"height\":79,\"caption\":\"MyFreeOnlineTools\"},\"image\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/b1eb72e57c554e3b33cfeec477efcc3c\",\"name\":\"myfreeonlinetools\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b870b17c6c7e3b75d7fe0b8bebfc9cf5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b870b17c6c7e3b75d7fe0b8bebfc9cf5?s=96&d=mm&r=g\",\"caption\":\"myfreeonlinetools\"},\"description\":\"Live in Delhi, Working in Gurgaon as Web Designer and Graphic Designer. Developed and Design myfreeonlinetools for online free tools. Also having youtube channel Name with LearnSchoolOnline. Traveling, watching movies, coding are the hobbies.\",\"sameAs\":[\"https:\/\/myfreeonlinetools.com\/\",\"https:\/\/www.facebook.com\/LearnSchoolOnline\/\",\"https:\/\/www.youtube.com\/learnschoolonline\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Send Mail by JavaScript AJAX PHP Mail Function by Submit form - MyFreeOnlineTools","description":"Using JQuery AJAX and PHP Code for submiting Contact Form data and send mail","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/","og_locale":"en_US","og_type":"article","og_title":"Send Mail by JavaScript AJAX PHP Mail Function by Submit form - MyFreeOnlineTools","og_description":"Using JQuery AJAX and PHP Code for submiting Contact Form data and send mail","og_url":"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/","og_site_name":"MyFreeOnlineTools","article_author":"https:\/\/www.facebook.com\/LearnSchoolOnline\/","article_published_time":"2020-06-23T03:50:58+00:00","article_modified_time":"2020-09-06T05:02:44+00:00","og_image":[{"width":400,"height":225,"url":"http:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2020\/06\/jquery-ajax-php-code-for-contact-form.jpg","type":"image\/jpeg"}],"author":"myfreeonlinetools","twitter_card":"summary_large_image","twitter_misc":{"Written by":"myfreeonlinetools","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/#article","isPartOf":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/"},"author":{"name":"myfreeonlinetools","@id":"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/b1eb72e57c554e3b33cfeec477efcc3c"},"headline":"Send Mail by JavaScript AJAX PHP Mail Function by Submit form","datePublished":"2020-06-23T03:50:58+00:00","dateModified":"2020-09-06T05:02:44+00:00","mainEntityOfPage":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/"},"wordCount":252,"commentCount":0,"publisher":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/#organization"},"image":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/#primaryimage"},"thumbnailUrl":"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2020\/06\/jquery-ajax-php-code-for-contact-form.jpg","articleSection":["AJAX","PHP"],"inLanguage":"en","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/","url":"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/","name":"Send Mail by JavaScript AJAX PHP Mail Function by Submit form - MyFreeOnlineTools","isPartOf":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/#primaryimage"},"image":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/#primaryimage"},"thumbnailUrl":"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2020\/06\/jquery-ajax-php-code-for-contact-form.jpg","datePublished":"2020-06-23T03:50:58+00:00","dateModified":"2020-09-06T05:02:44+00:00","description":"Using JQuery AJAX and PHP Code for submiting Contact Form data and send mail","breadcrumb":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/"]}]},{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/#primaryimage","url":"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2020\/06\/jquery-ajax-php-code-for-contact-form.jpg","contentUrl":"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2020\/06\/jquery-ajax-php-code-for-contact-form.jpg","width":400,"height":225,"caption":"Send Mail by JavaScript AJAX PHP Mail Function by Submit form"},{"@type":"BreadcrumbList","@id":"https:\/\/myfreeonlinetools.com\/blog\/send-mail-using-jquery-ajax-php-mail-function-submit-form\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/myfreeonlinetools.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Send Mail by JavaScript AJAX PHP Mail Function by Submit form"}]},{"@type":"WebSite","@id":"https:\/\/myfreeonlinetools.com\/blog\/#website","url":"https:\/\/myfreeonlinetools.com\/blog\/","name":"MyFreeOnlineTools","description":"","publisher":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/myfreeonlinetools.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/myfreeonlinetools.com\/blog\/#organization","name":"MyFreeOnlineTools","url":"https:\/\/myfreeonlinetools.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/11\/myfreeonlinetools-blue.png","contentUrl":"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/11\/myfreeonlinetools-blue.png","width":387,"height":79,"caption":"MyFreeOnlineTools"},"image":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/b1eb72e57c554e3b33cfeec477efcc3c","name":"myfreeonlinetools","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b870b17c6c7e3b75d7fe0b8bebfc9cf5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b870b17c6c7e3b75d7fe0b8bebfc9cf5?s=96&d=mm&r=g","caption":"myfreeonlinetools"},"description":"Live in Delhi, Working in Gurgaon as Web Designer and Graphic Designer. Developed and Design myfreeonlinetools for online free tools. Also having youtube channel Name with LearnSchoolOnline. Traveling, watching movies, coding are the hobbies.","sameAs":["https:\/\/myfreeonlinetools.com\/","https:\/\/www.facebook.com\/LearnSchoolOnline\/","https:\/\/www.youtube.com\/learnschoolonline"]}]}},"_links":{"self":[{"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/posts\/828","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/comments?post=828"}],"version-history":[{"count":0,"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/posts\/828\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/media\/841"}],"wp:attachment":[{"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/media?parent=828"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/categories?post=828"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/tags?post=828"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}