{"id":2526,"date":"2013-03-26T17:02:11","date_gmt":"2013-03-26T21:02:11","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2013\/03\/26\/349-php-mail-error\/"},"modified":"2022-03-11T11:12:36","modified_gmt":"2022-03-11T16:12:36","slug":"php-mail-error-prestashop","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/","title":{"rendered":"Unable to use php mail function in PrestaShop 1.5"},"content":{"rendered":"<p>In the PrestaShop 1.5 back office, you have the ability to send email via either the php mail() function or SMTP. It is the most common to use the php mail() function. When using this setting, you may receive an error like the one below:<\/p>\n<div class=\"code_block\">Sending failed using mail() as PHP\u2019s default mail() function returned boolean FALSE<\/div>\n<p> This error occurs because of a false return code for the following statement in the <em>MailSend.php<\/em>.  <\/p>\n<div class=\"code_block\">\n<div style=\"color:red\">if (!ini_get(\u201csafe_mode\u201d)) $success = mail($to, $subject, $message, $headers, $params);     else $success = mail($to, $subject, $message, $headers);<\/div>\n<\/div>\n<p> The first thing you want to check is to see if the mail() function is enabled on your server. This can be easily checked by <a href=\"\/support\/website\/how-to-create-a-phpinfo-page\/\">using a phpinfo page<\/a>. If the mail function is disabled, it will display in the disable_functions label as shown here. <\/p>\n<p> <a href=\"\/support\/wp-content\/uploads\/2013\/03\/edu_prestashop1.5_errors_email_mail-function_phpinfo.png\" rel=\"lightbox-0\"><img decoding=\"async\" width=\"607\" height=\"139\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/edu_prestashop1.5_errors_email_mail-function_phpinfo.png\" class=\"optimized-lcp-image\" alt=\"php info description\" loading=\"eager\" fetchpriority=\"high\" sizes=\"(max-width: 768px) 100vw, 768px\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/edu_prestashop1.5_errors_email_mail-function_phpinfo.png 607w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/edu_prestashop1.5_errors_email_mail-function_phpinfo-300x69.png 300w\"><\/a><\/p>\n<div style=\"clear:both;\"><\/div>\n<p> If the mail function is enabled, then you may need to follow the steps below to fix the issue and allow your site to send mail. Follow the guide below as we show you how to fix the \u201cSending failed using mail() as PHP\u2019s default mail() function returned boolean FALSE\u201d error in PrestaShop 1.5.<\/p>\n<h2>Fixing the ability to use the mail function in PrestaShop 1.5<\/h2>\n<ol class=\"article_list\">\n<li>First, <a href=\"\/support\/edu\/cpanel\/how-to-log-into-cpanel\/\">log into your cPanel dashboard<\/a>.\n<div style=\"clear:both;\"><\/div>\n<\/li>\n<li>From the main cPanel, navigate to the root folder for your PrestaShop application by using the File Manager.\n<div style=\"clear:both;\"><\/div>\n<\/li>\n<li>Once in the root folder, you will need to make three code changes in three files. The first is located in the <strong>\/tools\/swift\/Swift\/Plugin\/MailSend.php<\/strong> at around line 158.\n<p> Change <\/p>\n<div class=\"code_block\">   $headers = $headers-&gt;build();<\/div>\n<p> To     <\/p>\n<div class=\"code_block\"> $headers = $headers-&gt;build();<br> $params = \u201c\u201d; <\/div>\n<div style=\"clear:both;\"><\/div>\n<\/li>\n<li>Next, navigate to the <strong>\/tools\/swift\/Swift\/Message.php<\/strong> file to around line 79.\n<p>   Change    <\/p>\n<div class=\"code_block\"> $this-&gt;setFrom(\u201c\u201d);   <\/div>\n<p>To <\/p>\n<div class=\"code_block\"> $this-&gt;setFrom(\u201cyourmail@example.com\u201d); <\/div>\n<div style=\"clear:both;\"><\/div>\n<\/li>\n<li>Finally, navigate and change the <strong>\/tools\/swift\/Swift.php<\/strong> file at around line 370.\n<p>   Change    <\/p>\n<div class=\"code_block\">   if (!($has_reply_to = $message-&gt;getReplyTo())) $message-&gt;setReplyTo($from);   <\/div>\n<p>To <\/p>\n<div class=\"code_block\"> if (!($has_reply_to = $message-&gt;getReplyTo())) $message-&gt;setReplyTo($from);<br> if (!$has_reply_to[0]) $message-&gt;setReplyTo($from-&gt;getAddress());  <\/div>\n<div style=\"clear:both;\"><\/div>\n<\/li>\n<li>Ensure you save each of the edited files in order to activate the changes. Your PrestaShop 1.5 site should now be able to send email. Special thanks from <em>Sales Mechanics<\/em> in the <a href=\"https:\/\/www.prestashop.com\/forums\">PrestaShop.com forums<\/a> for this fix!\n<div style=\"clear:both;\"><\/div>\n<\/li>\n<\/ol>\n","protected":false},"excerpt":{"rendered":"<p>In the PrestaShop 1.5 back office, you have the ability to send email via either the php mail() function or SMTP. It is the most common to use the php mail() function. When using this setting, you may receive an error like the one below: Sending failed using mail() as PHP\u2019s default mail() function returned<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/\"> Read More ><\/a><\/p>\n","protected":false},"author":8,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[92],"tags":[],"class_list":["post-2526","post","type-post","status-publish","format-standard","hentry","category-prestashop"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Unable to use php mail function in PrestaShop 1.5 | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"Getting the &quot;Sending failed using mail() as PHP&#039;s default mail() function returned boolean FALSE&quot; error in PrestaShop 1.5? Check out this article for a fix!\" \/>\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\/edu\/prestashop\/php-mail-error-prestashop\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Unable to use php mail function in PrestaShop 1.5 | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"Getting the &quot;Sending failed using mail() as PHP&#039;s default mail() function returned boolean FALSE&quot; error in PrestaShop 1.5? Check out this article for a fix!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/\" \/>\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=\"2013-03-26T21:02:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-03-11T16:12:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/edu_prestashop1.5_errors_email_mail-function_phpinfo.png\" \/>\n<meta name=\"author\" content=\"Scott Mitchell\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Scott Mitchell\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/\"},\"author\":{\"name\":\"Scott Mitchell\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/d850efb28ef3573db7d24b0d8fa9eaed\"},\"headline\":\"Unable to use php mail function in PrestaShop 1.5\",\"datePublished\":\"2013-03-26T21:02:11+00:00\",\"dateModified\":\"2022-03-11T16:12:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/\"},\"wordCount\":385,\"commentCount\":11,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/edu_prestashop1.5_errors_email_mail-function_phpinfo.png\",\"articleSection\":[\"Prestashop\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/\",\"name\":\"Unable to use php mail function in PrestaShop 1.5 | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/edu_prestashop1.5_errors_email_mail-function_phpinfo.png\",\"datePublished\":\"2013-03-26T21:02:11+00:00\",\"dateModified\":\"2022-03-11T16:12:36+00:00\",\"description\":\"Getting the \\\"Sending failed using mail() as PHP's default mail() function returned boolean FALSE\\\" error in PrestaShop 1.5? Check out this article for a fix!\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/edu_prestashop1.5_errors_email_mail-function_phpinfo.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/edu_prestashop1.5_errors_email_mail-function_phpinfo.png\",\"width\":607,\"height\":139,\"caption\":\"Click here to view the larger image\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Unable to use php mail function in PrestaShop 1.5\"}]},{\"@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\/d850efb28ef3573db7d24b0d8fa9eaed\",\"name\":\"Scott Mitchell\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/scott\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Unable to use php mail function in PrestaShop 1.5 | InMotion Hosting","description":"Getting the \"Sending failed using mail() as PHP's default mail() function returned boolean FALSE\" error in PrestaShop 1.5? Check out this article for a fix!","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\/edu\/prestashop\/php-mail-error-prestashop\/","og_locale":"en_US","og_type":"article","og_title":"Unable to use php mail function in PrestaShop 1.5 | InMotion Hosting","og_description":"Getting the \"Sending failed using mail() as PHP's default mail() function returned boolean FALSE\" error in PrestaShop 1.5? Check out this article for a fix!","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2013-03-26T21:02:11+00:00","article_modified_time":"2022-03-11T16:12:36+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/edu_prestashop1.5_errors_email_mail-function_phpinfo.png","type":"","width":"","height":""}],"author":"Scott Mitchell","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Scott Mitchell","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/"},"author":{"name":"Scott Mitchell","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/d850efb28ef3573db7d24b0d8fa9eaed"},"headline":"Unable to use php mail function in PrestaShop 1.5","datePublished":"2013-03-26T21:02:11+00:00","dateModified":"2022-03-11T16:12:36+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/"},"wordCount":385,"commentCount":11,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/edu_prestashop1.5_errors_email_mail-function_phpinfo.png","articleSection":["Prestashop"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/","name":"Unable to use php mail function in PrestaShop 1.5 | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/edu_prestashop1.5_errors_email_mail-function_phpinfo.png","datePublished":"2013-03-26T21:02:11+00:00","dateModified":"2022-03-11T16:12:36+00:00","description":"Getting the \"Sending failed using mail() as PHP's default mail() function returned boolean FALSE\" error in PrestaShop 1.5? Check out this article for a fix!","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/edu_prestashop1.5_errors_email_mail-function_phpinfo.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/edu_prestashop1.5_errors_email_mail-function_phpinfo.png","width":607,"height":139,"caption":"Click here to view the larger image"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/php-mail-error-prestashop\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Unable to use php mail function in PrestaShop 1.5"}]},{"@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\/d850efb28ef3573db7d24b0d8fa9eaed","name":"Scott Mitchell","url":"https:\/\/www.inmotionhosting.com\/support\/author\/scott\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/2526","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\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=2526"}],"version-history":[{"count":3,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/2526\/revisions"}],"predecessor-version":[{"id":95046,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/2526\/revisions\/95046"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=2526"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=2526"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=2526"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}