{"id":3165,"date":"2015-12-01T10:52:15","date_gmt":"2015-12-01T10:52:15","guid":{"rendered":"https:\/\/unihost.com\/help\/?p=3165"},"modified":"2023-01-19T13:58:29","modified_gmt":"2023-01-19T10:58:29","slug":"php-script-to-send-email-using-smtp","status":"publish","type":"post","link":"https:\/\/unihost.com\/help\/php-script-to-send-email-using-smtp\/","title":{"rendered":"PHP script to send email using SMTP"},"content":{"rendered":"<p><span style=\"font-family: Ubuntu, sans-serif;\">Despite php already having a mail function called mail(), SMTP sendmail script is preferable. Most importantly, it allows you to bypass the antispam filters, most of which which are set to block the PHP-mail by default.<\/span><\/p>\n<p><!--more--><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">With an SMTP script, you can completely disguise the letter and make everyone think that it was not sent from with a mail() function.<\/span><\/p>\n<h2><span style=\"font-weight: 400; font-family: Ubuntu, sans-serif;\">How to write a sendmail\u00a0SMTP script<\/span><\/h2>\n<h3><span style=\"font-family: Ubuntu, sans-serif;\">Creating a function to work with an open SMTP-connection<\/span><\/h3>\n<pre><span style=\"font-family: 'Ubuntu Mono', monospace;\">&lt;?\r\nfunction get_data($smtp_conn)\r\n{\r\n$data=\"\";\r\nwhile($str = fgets($smtp_conn,515))\r\n{\r\n$data .= $str;\r\nif(substr($str,3,1) == \" \") { break; }\r\n}\r\nreturn $data;\r\n}\r\n?&gt;<\/span><\/pre>\n<h3><span style=\"font-family: Ubuntu, sans-serif;\">Creating the letter<\/span><\/h3>\n<pre><span style=\"font-family: 'Ubuntu Mono', monospace;\">&lt;?\r\n$header.=\"X-Mailer: The Bat! (v3.99.3) Professional\\r\\n\"; \r\n$header.=\"Reply-To: =?utf-8?Q?\".str_replace(\"+\",\"_\",str_replace(\"%\",\"=\",urlencode('sender'))).\"?= &lt;sender@domain.com&gt;\\r\\n\";\r\n<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">Change\u00a0<span style=\"font-family: 'Ubuntu Mono', monospace;\">utf-8<\/span>\u00a0 to the encoding system you are using, <span style=\"font-family: 'Ubuntu Mono', monospace;\">sender<\/span> &#8211; to the sender name, and\u00a0<span style=\"font-family: 'Ubuntu Mono', monospace;\">sender@domain.com<\/span> &#8211; to the email you are going to send the letter from.<\/span><\/p>\n<pre><span style=\"font-family: 'Ubuntu Mono', monospace;\">$header.=\"X-Priority: 3 (Normal)\\r\\n\";\r\n$header.=\"Message-ID: &lt;172562218.\".date(\"YmjHis\").\"@domain.com&gt;\\r\\n\";<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">Change\u00a0<span style=\"font-family: 'Ubuntu Mono', monospace;\">@domain.com<\/span>\u00a0to the domain where your mail is located.<\/span><\/p>\n<pre><span style=\"font-family: 'Ubuntu Mono', monospace;\">$header.=\"To: =?windows-1251?Q?\".str_replace(\"+\",\"_\",str_replace(\"%\",\"=\",urlencode('recipient'))).\"?= &lt;recipient@domain.ru&gt;\\r\\n\";<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">Change\u00a0<\/span><span style=\"font-family: 'Ubuntu Mono', monospace;\">utf-8<\/span><span style=\"font-family: Ubuntu, sans-serif;\">\u00a0to the encoding system that you are using,\u00a0<\/span><span style=\"font-family: 'Ubuntu Mono', monospace;\">recipient<\/span><span style=\"font-family: Ubuntu, sans-serif;\">\u00a0to the name of the letter&#8217;s recipient, and \u00a0<\/span><span style=\"font-family: 'Ubuntu Mono', monospace;\">recipient@domain.com<\/span><span style=\"font-family: Ubuntu, sans-serif;\"> \u2014 to their domain<\/span><\/p>\n<pre><span style=\"font-family: 'Ubuntu Mono', monospace;\">$header.=\"Subject: =?windows-1251?Q?\".str_replace(\"+\",\"_\",str_replace(\"%\",\"=\",urlencode('check'))).\"?=\\r\\n\";\r\n $header.=\"MIME-Version: 1.0\\r\\n\";\r\n $header.=\"Content-Type: text\/plain; charset=windows-1251\\r\\n\";\r\n $header.=\"Content-Transfer-Encoding: 8bit\\r\\n\";\r\n ?&gt;<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">Change <span style=\"font-family: 'Ubuntu Mono', monospace;\">check<\/span> to the letter&#8217;s subject.<\/span><\/p>\n<pre><span style=\"font-family: 'Ubuntu Mono', monospace;\">$text=\"Hi, how do you do?\";<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">Change\u00a0 <span style=\"font-family: 'Ubuntu Mono', monospace;\">Hi, how do you do?\u00a0<\/span><\/span><span style=\"font-family: 'Ubuntu Mono', monospace;\"><span style=\"font-family: Ubuntu, sans-serif;\">to your letter&#8217;s text.<\/span><\/span><\/p>\n<h3><span style=\"font-family: 'Ubuntu Mono', monospace;\">Sending the letter<\/span><\/h3>\n<pre><span style=\"font-family: 'Ubuntu Mono', monospace;\">&lt;?\r\n$smtp_conn = fsockopen(\"smtp.mail.ru\", 25,$errno, $errstr, 10);\r\n$data = get_data($smtp_conn);\r\n\/\/$code = substr($data,0,3);\r\n\/\/echo ($code);\r\nfputs($smtp_conn,\"EHLO johnny\\r\\n\");<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">If you want to, you can change\u00a0<\/span><span style=\"font-family: 'Ubuntu Mono', monospace;\">johnny<\/span><span style=\"font-family: Ubuntu, sans-serif;\">\u00a0to anything else. But it is only an ID the server will assign to your PC, so it&#8217;s not important.<\/span><\/p>\n<pre><span style=\"font-family: 'Ubuntu Mono', monospace;\">$data = get_data($smtp_conn);\r\n\/\/$code = substr($data,0,3);\r\n\/\/echo ($code);\r\nfputs($smtp_conn,\"AUTH LOGIN\\r\\n\");\r\n$data = get_data($smtp_conn);\r\n\/\/$code = substr($data,0,3);\r\n\/\/echo ($code);\r\nfputs($smtp_conn,base64_encode(\"login\").\"\\r\\n\");<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">Change\u00a0<span style=\"font-family: 'Ubuntu Mono', monospace;\">login<\/span>\u00a0to your login on the mail server.<\/span><\/p>\n<pre><span style=\"font-family: 'Ubuntu Mono', monospace;\">$data = get_data($smtp_conn);\r\n\/\/$code = substr($data,0,3);\r\n\/\/echo ($code);\r\nfputs($smtp_conn,base64_encode(\"password\").\"\\r\\n\");<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">Change\u00a0<span style=\"font-family: 'Ubuntu Mono', monospace;\">password<\/span>\u00a0to your password on the mail server.<\/span><\/p>\n<pre><span style=\"font-family: 'Ubuntu Mono', monospace;\">$data = get_data($smtp_conn);\r\n\/\/$code = substr($data,0,3);\r\n\/\/echo ($code);\r\n$size_msg=strlen($header.\"\\r\\n\".$text);\r\nfputs($smtp_conn,\"MAIL FROM:&lt;sender@domain.com&gt; SIZE=\".$size_msg.\"\\r\\n\");<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">Change\u00a0<span style=\"font-family: 'Ubuntu Mono', monospace;\">sender@domain.com\u00a0<span style=\"font-family: Ubuntu, sans-serif;\">to the mailing address that will be used to send the letter.<\/span><\/span><\/span><\/p>\n<pre><span style=\"font-family: 'Ubuntu Mono', monospace;\">$data = get_data($smtp_conn);\r\n\/\/$code = substr($data,0,3);\r\n\/\/echo ($code);\r\nfputs($smtp_conn,\"RCPT TO:&lt;recipient@domain.com&gt;\\r\\n\");<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">Change\u00a0<span style=\"font-family: 'Ubuntu Mono', monospace;\">recipient@domain.com<\/span>\u00a0to the recipient&#8217;s mailing address.<\/span><\/p>\n<pre><span style=\"font-family: 'Ubuntu Mono', monospace;\">$data = get_data($smtp_conn);\r\n\/\/$code = substr($data,0,3);\r\n\/\/echo ($code);\r\nfputs($smtp_conn,\"DATA\\r\\n\");\r\n$data = get_data($smtp_conn);\r\n\/\/$code = substr($data,0,3);\r\n\/\/echo ($code);\r\nfputs($smtp_conn,$header.\"\\r\\n\".$text.\"\\r\\n.\\r\\n\");\r\n$data = get_data($smtp_conn);\r\n\/\/$code = substr($data,0,3);\r\n\/\/echo ($code);\r\nfputs($smtp_conn,\"QUIT\\r\\n\");\r\n$data = get_data($smtp_conn);\r\n\/\/$code = substr($data,0,3);\r\n\/\/echo ($code);\r\n?&gt;\r\n<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">This script can be used to send mail from any hosting or a server that supports PHP.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Despite php already having a mail function called mail(), SMTP sendmail script is preferable. Most importantly, it allows you to bypass the antispam filters, most of which which are set to block the PHP-mail by default.<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[158],"tags":[273,287,149],"class_list":["post-3165","post","type-post","status-publish","format-standard","hentry","category-dedicated-servers","tag-email","tag-php-script","tag-smtp"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>PHP script to send email using SMTP - Unihost.FAQ<\/title>\n<meta name=\"description\" content=\"PHP script to send email using SMTP allows to protect your letters of being qualified like spam.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/unihost.com\/help\/php-script-to-send-email-using-smtp\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PHP script to send email using SMTP - Unihost.FAQ\" \/>\n<meta property=\"og:description\" content=\"PHP script to send email using SMTP allows to protect your letters of being qualified like spam.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/unihost.com\/help\/php-script-to-send-email-using-smtp\/\" \/>\n<meta property=\"og:site_name\" content=\"Unihost.FAQ\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/unihost\/\" \/>\n<meta property=\"article:published_time\" content=\"2015-12-01T10:52:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-19T10:58:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/unihost.com\/help\/minio.php?.\/unihost-logo-alt.png\" \/>\n\t<meta property=\"og:image:width\" content=\"250\" \/>\n\t<meta property=\"og:image:height\" content=\"141\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Unihost Support\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@unihost\" \/>\n<meta name=\"twitter:site\" content=\"@unihost\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Unihost Support\" \/>\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:\/\/unihost.com\/help\/php-script-to-send-email-using-smtp\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/unihost.com\/help\/php-script-to-send-email-using-smtp\/\"},\"author\":{\"name\":\"Unihost Support\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a\"},\"headline\":\"PHP script to send email using SMTP\",\"datePublished\":\"2015-12-01T10:52:15+00:00\",\"dateModified\":\"2023-01-19T10:58:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/unihost.com\/help\/php-script-to-send-email-using-smtp\/\"},\"wordCount\":265,\"publisher\":{\"@id\":\"https:\/\/unihost.com\/help\/#organization\"},\"keywords\":[\"email\",\"php script\",\"smtp\"],\"articleSection\":[\"02. Dedicated servers\"],\"inLanguage\":\"en\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/unihost.com\/help\/php-script-to-send-email-using-smtp\/\",\"url\":\"https:\/\/unihost.com\/help\/php-script-to-send-email-using-smtp\/\",\"name\":\"PHP script to send email using SMTP - Unihost.FAQ\",\"isPartOf\":{\"@id\":\"https:\/\/unihost.com\/help\/#website\"},\"datePublished\":\"2015-12-01T10:52:15+00:00\",\"dateModified\":\"2023-01-19T10:58:29+00:00\",\"description\":\"PHP script to send email using SMTP allows to protect your letters of being qualified like spam.\",\"breadcrumb\":{\"@id\":\"https:\/\/unihost.com\/help\/php-script-to-send-email-using-smtp\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/unihost.com\/help\/php-script-to-send-email-using-smtp\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/unihost.com\/help\/php-script-to-send-email-using-smtp\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Unihost\",\"item\":\"https:\/\/unihost.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Help\",\"item\":\"https:\/\/unihost.com\/help\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"PHP script to send email using SMTP\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/unihost.com\/help\/#website\",\"url\":\"https:\/\/unihost.com\/help\/\",\"name\":\"Unihost.FAQ\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/unihost.com\/help\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/unihost.com\/help\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/unihost.com\/help\/#organization\",\"name\":\"Unihost\",\"alternateName\":\"Unihost\",\"url\":\"https:\/\/unihost.com\/help\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png\",\"contentUrl\":\"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png\",\"width\":300,\"height\":300,\"caption\":\"Unihost\"},\"image\":{\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/unihost\/\",\"https:\/\/x.com\/unihost\",\"https:\/\/www.instagram.com\/unihost\/?hl=en\",\"https:\/\/www.linkedin.com\/company\/unihost-com\",\"https:\/\/www.youtube.com\/channel\/UCITKsxMDnslQY8brN3advgw\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a\",\"name\":\"Unihost Support\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g\",\"caption\":\"Unihost Support\"},\"sameAs\":[\"https:\/\/unihost.com\/\"],\"url\":\"https:\/\/unihost.com\/help\/author\/support\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PHP script to send email using SMTP - Unihost.FAQ","description":"PHP script to send email using SMTP allows to protect your letters of being qualified like spam.","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:\/\/unihost.com\/help\/php-script-to-send-email-using-smtp\/","og_locale":"en_US","og_type":"article","og_title":"PHP script to send email using SMTP - Unihost.FAQ","og_description":"PHP script to send email using SMTP allows to protect your letters of being qualified like spam.","og_url":"https:\/\/unihost.com\/help\/php-script-to-send-email-using-smtp\/","og_site_name":"Unihost.FAQ","article_publisher":"https:\/\/www.facebook.com\/unihost\/","article_published_time":"2015-12-01T10:52:15+00:00","article_modified_time":"2023-01-19T10:58:29+00:00","og_image":[{"width":250,"height":141,"url":"https:\/\/unihost.com\/help\/minio.php?.\/unihost-logo-alt.png","type":"image\/png"}],"author":"Unihost Support","twitter_card":"summary_large_image","twitter_creator":"@unihost","twitter_site":"@unihost","twitter_misc":{"Written by":"Unihost Support","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/unihost.com\/help\/php-script-to-send-email-using-smtp\/#article","isPartOf":{"@id":"https:\/\/unihost.com\/help\/php-script-to-send-email-using-smtp\/"},"author":{"name":"Unihost Support","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a"},"headline":"PHP script to send email using SMTP","datePublished":"2015-12-01T10:52:15+00:00","dateModified":"2023-01-19T10:58:29+00:00","mainEntityOfPage":{"@id":"https:\/\/unihost.com\/help\/php-script-to-send-email-using-smtp\/"},"wordCount":265,"publisher":{"@id":"https:\/\/unihost.com\/help\/#organization"},"keywords":["email","php script","smtp"],"articleSection":["02. Dedicated servers"],"inLanguage":"en"},{"@type":"WebPage","@id":"https:\/\/unihost.com\/help\/php-script-to-send-email-using-smtp\/","url":"https:\/\/unihost.com\/help\/php-script-to-send-email-using-smtp\/","name":"PHP script to send email using SMTP - Unihost.FAQ","isPartOf":{"@id":"https:\/\/unihost.com\/help\/#website"},"datePublished":"2015-12-01T10:52:15+00:00","dateModified":"2023-01-19T10:58:29+00:00","description":"PHP script to send email using SMTP allows to protect your letters of being qualified like spam.","breadcrumb":{"@id":"https:\/\/unihost.com\/help\/php-script-to-send-email-using-smtp\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/unihost.com\/help\/php-script-to-send-email-using-smtp\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/unihost.com\/help\/php-script-to-send-email-using-smtp\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Unihost","item":"https:\/\/unihost.com\/"},{"@type":"ListItem","position":2,"name":"Help","item":"https:\/\/unihost.com\/help\/"},{"@type":"ListItem","position":3,"name":"PHP script to send email using SMTP"}]},{"@type":"WebSite","@id":"https:\/\/unihost.com\/help\/#website","url":"https:\/\/unihost.com\/help\/","name":"Unihost.FAQ","description":"","publisher":{"@id":"https:\/\/unihost.com\/help\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/unihost.com\/help\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/unihost.com\/help\/#organization","name":"Unihost","alternateName":"Unihost","url":"https:\/\/unihost.com\/help\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/","url":"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png","contentUrl":"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png","width":300,"height":300,"caption":"Unihost"},"image":{"@id":"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/unihost\/","https:\/\/x.com\/unihost","https:\/\/www.instagram.com\/unihost\/?hl=en","https:\/\/www.linkedin.com\/company\/unihost-com","https:\/\/www.youtube.com\/channel\/UCITKsxMDnslQY8brN3advgw"]},{"@type":"Person","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a","name":"Unihost Support","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g","caption":"Unihost Support"},"sameAs":["https:\/\/unihost.com\/"],"url":"https:\/\/unihost.com\/help\/author\/support\/"}]}},"_links":{"self":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/3165","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/comments?post=3165"}],"version-history":[{"count":9,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/3165\/revisions"}],"predecessor-version":[{"id":6520,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/3165\/revisions\/6520"}],"wp:attachment":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/media?parent=3165"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/categories?post=3165"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/tags?post=3165"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}