{"id":369,"date":"2012-02-07T14:29:49","date_gmt":"2012-02-07T14:29:49","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2012\/02\/07\/using-the-php-mail-function-to-send-emails\/"},"modified":"2025-02-11T13:10:03","modified_gmt":"2025-02-11T18:10:03","slug":"using-the-php-mail-function-to-send-emails","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/","title":{"rendered":"PHP mail() Function Code to Send Emails from a Form"},"content":{"rendered":"<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"538\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/02\/php-mail-featured-1024x538.png\" alt=\"featured image with text using php mail\" class=\"wp-image-129304\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/02\/php-mail-featured-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/02\/php-mail-featured-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/02\/php-mail-featured-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/02\/php-mail-featured.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p>You can use the <strong>PHP mail() function<\/strong> to send an email with PHP and the simplest way to do this is to send a text email when a visitor to your website fills out a form.<\/p>\n\n\n\n<p class=\"alert alert-warning\"><b>NOTE:<\/b> Mail() is not available on shared hosting.<\/p>\n\n\n\n<p><em>(Since you\u2019re interested in sending email via PHP, we\u2019re assuming you have a live website. Is that not the case? Let\u2019s start by getting you hooked up with the perfect <a href=\"https:\/\/www.inmotionhosting.com\/\">web hosting package<\/a>.)<\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Basic PHP email() function code<\/h2>\n\n\n\n<p>Below is the code for the basic email function. We can take the script and use a form on our website to set the variables in the script above to send an email.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;?php \n\/\/ if \"email\" variable is filled out, send email\nif (isset($_REQUEST['email'])) {\n\n\/\/Email information\n$to = \"someone@example.com\";\n$email = $_REQUEST['email'];\n$subject = $_REQUEST['subject'];\n$message = $_REQUEST['message'];\n\n\/\/Send email\nmail($to, $subject, $message, \"From:\" . $email);\n\n\/\/Email response\necho \"Thank you for contacting us!\"; }\n\n\/\/if \"email\" variable is not filled out, display the form\nelse { ?&gt;\n&lt;form method=\"post\"&gt;\nEmail: &lt;input name=\"email\" type=\"text\" \/&gt;\nSubject: &lt;input name=\"subject\" type=\"text\" \/&gt;\nMessage: &lt;textarea name=\"message\" rows=\"15\" cols=\"40\"&gt;&lt;\/textarea&gt;\n&lt;input type=\"submit\" value=\"Submit\" \/&gt;\n&lt;\/form&gt;\n&lt;?php } ?&gt;<\/pre>\n\n\n\n<p>If you want to include multiple recipients on the email, you can update this line as follows:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$to = \"person1@example.com, person2@example.com\";<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">How PHP mail() works<\/h2>\n\n\n\n<p>The first part of the form checks to make sure the email input field is filled out. If it isn\u2019t, displays the HTML form on the page. If the email is set (after the visitor fills out the form), it is ready to send.<\/p>\n\n\n\n<p>When the submit button is pressed after the form is filled out, the page reloads, reads that the email input is set and it sends the email.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Leveraging PHPMailer for Advanced Email Functionality<\/h2>\n\n\n\n<p>In addition to utilizing the native PHP mail() function for sending emails from your web forms, you have the option to explore more advanced email capabilities through a third-party library known as <a href=\"\/support\/website\/using-phpmailer-to-send-mail-through-php\/\">PHPMailer<\/a>. <\/p>\n\n\n\n<p>While this article has primarily focused on demonstrating the usage of the mail() function, it\u2019s worth noting that PHPMailer offers an array of features that can greatly enhance your email sending process. If you find yourself in need of secure SMTP authentication, streamlined attachment handling, or comprehensive error reporting, considering PHPMailer as an alternative solution could provide you with the tools to address these requirements seamlessly.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Keep in mind, this is a basic tutorial explaining how to use the mail() function in PHP but it can be insecure and you should generally avoid using it. The purpose of this article is to provide you the basics of how to use phpmail() but if you want to do more with it, you may want to look into securing your code to possible hacks.<\/p>\n\n\n\n<p>To learn more about the PHP email function, please see the article on <a href=\"\/support\/website\/how-to-create-a-custom-php-contact-form\/\">How to create a custom PHP contact form<\/a> with more information on validation and error checking. If you need further assistance, feel free to <a href=\"https:\/\/www.inmotionhosting.com\/support\/questions\/\">ask a question on our support center<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>You can use the PHP mail() function to send an email with PHP and the simplest way to do this is to send a text email when a visitor to your website fills out a form. NOTE: Mail() is not available on shared hosting. (Since you&#8217;re interested in sending email via PHP, we&#8217;re assuming you<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/\"> Read More ><\/a><\/p>\n","protected":false},"author":56983,"featured_media":129304,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4,4288],"tags":[],"class_list":["post-369","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-email","category-website"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>PHP mail() Function Code to Send Emails from a Form | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"Looking to make a PHP contact form? Here is a pre-made php script to do so.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PHP mail() Function Code to Send Emails from a Form | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"Looking to make a PHP contact form? Here is a pre-made php script to do so.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2012-02-07T14:29:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-11T18:10:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/02\/php-mail-featured.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Carrie Smaha\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@carriesmaha\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Carrie Smaha\" \/>\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:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/\"},\"author\":{\"name\":\"Carrie Smaha\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/595948dab2995d347a87076abdae19d8\"},\"headline\":\"PHP mail() Function Code to Send Emails from a Form\",\"datePublished\":\"2012-02-07T14:29:49+00:00\",\"dateModified\":\"2025-02-11T18:10:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/\"},\"wordCount\":438,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/02\/php-mail-featured.png\",\"articleSection\":[\"Email\",\"Website\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/\",\"name\":\"PHP mail() Function Code to Send Emails from a Form | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/02\/php-mail-featured.png\",\"datePublished\":\"2012-02-07T14:29:49+00:00\",\"dateModified\":\"2025-02-11T18:10:03+00:00\",\"description\":\"Looking to make a PHP contact form? Here is a pre-made php script to do so.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/02\/php-mail-featured.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/02\/php-mail-featured.png\",\"width\":1200,\"height\":630,\"caption\":\"featured image with text using php mail\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PHP mail() Function Code to Send Emails from a Form\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/595948dab2995d347a87076abdae19d8\",\"name\":\"Carrie Smaha\",\"description\":\"Carrie Smaha is a Senior Marketing Operations leader with over 20 years of experience in digital strategy, web development, and IT project management. She specializes in go-to-market programs and SaaS solutions for WordPress and VPS Hosting, working closely with technical teams and customers to deliver high-performance, scalable platforms. At InMotion Hosting, she drives product marketing initiatives that blend strategic insight with technical depth.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/carriesmaha\/\",\"https:\/\/x.com\/carriesmaha\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/carries\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PHP mail() Function Code to Send Emails from a Form | InMotion Hosting","description":"Looking to make a PHP contact form? Here is a pre-made php script to do so.","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:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/","og_locale":"en_US","og_type":"article","og_title":"PHP mail() Function Code to Send Emails from a Form | InMotion Hosting","og_description":"Looking to make a PHP contact form? Here is a pre-made php script to do so.","og_url":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2012-02-07T14:29:49+00:00","article_modified_time":"2025-02-11T18:10:03+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/02\/php-mail-featured.png","type":"image\/png"}],"author":"Carrie Smaha","twitter_card":"summary_large_image","twitter_creator":"@carriesmaha","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Carrie Smaha","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/"},"author":{"name":"Carrie Smaha","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/595948dab2995d347a87076abdae19d8"},"headline":"PHP mail() Function Code to Send Emails from a Form","datePublished":"2012-02-07T14:29:49+00:00","dateModified":"2025-02-11T18:10:03+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/"},"wordCount":438,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/02\/php-mail-featured.png","articleSection":["Email","Website"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/","url":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/","name":"PHP mail() Function Code to Send Emails from a Form | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/02\/php-mail-featured.png","datePublished":"2012-02-07T14:29:49+00:00","dateModified":"2025-02-11T18:10:03+00:00","description":"Looking to make a PHP contact form? Here is a pre-made php script to do so.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/02\/php-mail-featured.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/02\/php-mail-featured.png","width":1200,"height":630,"caption":"featured image with text using php mail"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/using-the-php-mail-function-to-send-emails\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"PHP mail() Function Code to Send Emails from a Form"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/595948dab2995d347a87076abdae19d8","name":"Carrie Smaha","description":"Carrie Smaha is a Senior Marketing Operations leader with over 20 years of experience in digital strategy, web development, and IT project management. She specializes in go-to-market programs and SaaS solutions for WordPress and VPS Hosting, working closely with technical teams and customers to deliver high-performance, scalable platforms. At InMotion Hosting, she drives product marketing initiatives that blend strategic insight with technical depth.","sameAs":["https:\/\/www.linkedin.com\/in\/carriesmaha\/","https:\/\/x.com\/carriesmaha"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/carries\/"}]}},"jetpack_featured_media_url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/02\/php-mail-featured.png","jetpack_sharing_enabled":true,"primary_category":{"id":4288,"name":"Website","slug":"website","link":"https:\/\/www.inmotionhosting.com\/support\/website\/"},"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/369","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/56983"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=369"}],"version-history":[{"count":15,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/369\/revisions"}],"predecessor-version":[{"id":129306,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/369\/revisions\/129306"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media\/129304"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=369"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=369"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=369"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}