{"id":2095,"date":"2017-08-08T09:54:48","date_gmt":"2017-08-08T13:54:48","guid":{"rendered":"https:\/\/www.pair.com\/support\/kb\/?p=2095"},"modified":"2019-02-05T12:08:54","modified_gmt":"2019-02-05T17:08:54","slug":"how-do-i-send-email-with-php","status":"publish","type":"ht_kb","link":"https:\/\/www.pair.com\/support\/kb\/how-do-i-send-email-with-php\/","title":{"rendered":"How Do I Send Email with PHP?"},"content":{"rendered":"<p class=\"p1\"><span class=\"s1\"><a style=\"color:#fff; text-decoration:none!important;\" href=\"https:\/\/www.pair.com\/support\/kb\/tags\/shared-hosting\/\"><p style=\"background-color:#1a3d6e !important;color:#fff;padding:6px; display:inline-block!important;font-size:12px;font-weight:bold; border-radius:3px;\">Shared<\/p><\/a> <a style=\"color:#fff; text-decoration:none!important;\" href=\"https:\/\/www.pair.com\/support\/kb\/tags\/vps\/\"><p style=\"background-color:#1a3d6e !important;color:#fff;padding:6px; display:inline-block!important;font-size:12px;font-weight:bold; border-radius:3px;\">VPS<\/p><\/a> <a style=\"color:#fff; text-decoration:none!important;\" href=\"https:\/\/www.pair.com\/support\/kb\/tags\/qs-dedicated\/\"><p style=\"background-color:#1a3d6e !important;color:#fff;padding:6px; display:inline-block!important;font-size:12px; font-weight:bold; border-radius:3px;\">Dedicated<\/p><\/a><\/span><\/p>\n<h3>Why Would I Want to Use Email with PHP?<\/h3>\n<p><span style=\"font-weight: 400;\">PHP is a useful website building tool. It gives the website the ability to automatically run scripts when a button is pushed or someone interacts with a particular part of a site.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Using PHP to send emails is often used for forms embedded on the site. When the form is filled and submitted, the PHP script will run, grab the information from the form, and send out an email. <\/span><\/p>\n<p><span style=\"font-weight: 400;\">Depending on how you configure your script, that email can be anything from a forwarded message to you to a greeting to the person who submitted the information.<\/span><\/p>\n<p><a name=\"whereDoI\"><\/a><\/p>\n<h3>Where Do I Put PHP Script?<\/h3>\n<p><span style=\"font-weight: 400;\">The PHP script will go into your site\u2019s HTML, usually within the <\/span><span style=\"font-weight: 400; font-family: monospace;\">&lt;body&gt; <\/span><span style=\"font-weight: 400;\">element.<\/span><\/p>\n<p><a name=\"howDoI\"><\/a><\/p>\n<h3>How Do I Send Email with PHP?<\/h3>\n<p><span style=\"font-weight: 400;\">Check out PHP.net\u2019s <\/span><a href=\"http:\/\/php.net\/manual\/en\/function.mail.php\"><span style=\"font-weight: 400;\">mail function documentation<\/span><\/a><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">If you would like some examples, see W3schools <\/span><a href=\"https:\/\/www.w3schools.com\/php\/func_mail_mail.asp\"><span style=\"font-weight: 400;\">PHP mail function explanation<\/span><\/a><span style=\"font-weight: 400;\">.<\/span><br \/>\n<a name=\"parameters\"><\/a><\/p>\n<h4>Parameters<\/h4>\n<p>&nbsp;<\/p>\n<table>\n<tbody>\n<tr>\n<td>\n<p style=\"text-align: center;\"><b>Parameter<\/b><\/p>\n<\/td>\n<td>\n<p style=\"text-align: center;\"><b>Use<\/b><\/p>\n<\/td>\n<td>\n<p style=\"text-align: center;\"><b>Variable Type<\/b><\/p>\n<\/td>\n<td>\n<p style=\"text-align: center;\"><b>Required?<\/b><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400; font-family: monospace;\">$to<\/span><\/td>\n<td><span style=\"font-weight: 400;\">Specifies where the email will be sent.<\/span><\/td>\n<td><span style=\"font-weight: 400;\">String<\/span><\/td>\n<td><span style=\"font-weight: 400;\">Yes<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400; font-family: monospace;\">$subject<\/span><\/td>\n<td><span style=\"font-weight: 400;\">Specifies the email subject. <\/span><\/p>\n<p><span style=\"font-weight: 400;\">This parameter will display in the email\u2019s subject line.<\/span><\/td>\n<td><span style=\"font-weight: 400;\">String<\/span><\/td>\n<td><span style=\"font-weight: 400;\">Yes<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400; font-family: monospace;\">$message<\/span><\/td>\n<td><span style=\"font-weight: 400;\">Specifies the body of the email.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Each line should be separated by a <\/span><a href=\"#CRLF\"><span style=\"font-weight: 400; font-family: monospace;\">\\r\\n<\/span><\/a> <span style=\"font-weight: 400;\">.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">If you exceed 70 characters, use <\/span><a href=\"#CRLF\"><span style=\"font-weight: 400; font-family: monospace;\">wordwrap.<\/span><\/a><\/td>\n<td><span style=\"font-weight: 400;\">String<\/span><\/td>\n<td><span style=\"font-weight: 400;\">Yes<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400; font-family: monospace;\">$additional_headers<\/span><\/td>\n<td><span style=\"font-weight: 400;\">Specifies any extra headers, like <\/span><i><span style=\"font-weight: 400;\">From<\/span><\/i><span style=\"font-weight: 400;\">, <\/span><i><span style=\"font-weight: 400;\">CC<\/span><\/i><span style=\"font-weight: 400;\">, and <\/span><i><span style=\"font-weight: 400;\">BCC<\/span><\/i><span style=\"font-weight: 400;\">, that are inserted at the end of the email header<\/span><\/td>\n<td><span style=\"font-weight: 400;\">String<\/span><\/td>\n<td><span style=\"font-weight: 400;\">Optional<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400; font-family: monospace;\">$additional_parameters<\/span><\/td>\n<td><span style=\"font-weight: 400;\">Specifies any additional parameters <\/span><\/td>\n<td><span style=\"font-weight: 400;\">String<\/span><\/td>\n<td><span style=\"font-weight: 400;\">Optional<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400; font-family: monospace;\">wordwrap<\/span><\/td>\n<td><span style=\"font-weight: 400;\">Wraps strings that are longer than a certain amount of characters.<\/span><\/p>\n<p><span style=\"font-weight: 400;\"> Use in conjunction with <\/span><span style=\"font-weight: 400; font-family: monospace;\">$message<\/span><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">See an <a href=\"#wordwrap\">example here<\/a>.<\/span><\/td>\n<td><span style=\"font-weight: 400;\">String<\/span><\/td>\n<td><span style=\"font-weight: 400;\">Optional<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><a name=\"CRLF\"><\/a><\/p>\n<h4>CRLF<\/h4>\n<p><span style=\"font-weight: 400;\">CRLF stands for \u201cCarriage Return Feed Line,\u201d which signals the end of a line. CLRF is written as <\/span><span style=\"font-weight: 400; font-family: monospace;\">\\r\\n<\/span><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p><a name=\"commonUseExamples\"><\/a><\/p>\n<h4>Common Use Examples<\/h4>\n<h5>To send a message to a specific email address:<\/h5>\n<pre class=\"prettyprint\"><span style=\"font-weight: 400;\">&lt;?php<\/span>\r\n\r\n<span style=\"font-weight: 400;\">$message = \u201cNew customer.\\r\\nGo to thisSite.com to see new customer info.\\r\\nThanks,\\r\\nSite Team\u201d;<\/span>\r\n\r\n<span style=\"font-weight: 400;\">mail(\u2018<\/span><a href=\"mailto:myEmail@example.com\"><span style=\"font-weight: 400;\">myEmail@example.com<\/span><\/a><span style=\"font-weight: 400;\">\u2019, \u2018Email Subject\u2019 , $message);<\/span>\r\n\r\n<span style=\"font-weight: 400;\">?&gt;<\/span><\/pre>\n<h5>If the message is longer than 70 characters:<\/h5>\n<pre class=\"prettyprint\"><span style=\"font-weight: 400;\">&lt;?php<\/span>\r\n\r\n<a name=\"wordwrap\"><\/a>\r\n<span style=\"font-weight: 400;\">$message = \u201cThis is a message longer than seventy characters. Use wordwrap below to make things work.\u201d;<\/span>\r\n\r\n<span style=\"font-weight: 400;\">$message = wordwrap($message, 70, \u201c\\r\\n\u201d);<\/span>\r\n\r\n<span style=\"font-weight: 400;\">mail(\u2018<\/span><a href=\"mailto:myEmail@example.com\"><span style=\"font-weight: 400;\">myEmail@example.com<\/span><\/a><span style=\"font-weight: 400;\">\u2019, \u2018Email Subject\u2019 , $message);<\/span>\r\n\r\n<span style=\"font-weight: 400;\">?&gt;<\/span><\/pre>\n<h5>If the email has multiple headers:<\/h5>\n<pre class=\"prettyprint\"><span style=\"font-weight: 400;\">&lt;?php<\/span>\r\n\r\n<span style=\"font-weight: 400;\">$to = \u2018<\/span><a href=\"mailto:username@example.com\"><span style=\"font-weight: 400;\">username@example.com<\/span><\/a><span style=\"font-weight: 400;\">\u2019;<\/span>\r\n\r\n<span style=\"font-weight: 400;\">$subject = \u2018Email Subject\u2019;<\/span>\r\n\r\n<span style=\"font-weight: 400;\">$message = \u2018Your message will go here.\\r\\nDon\u2019t forget the CRFL for lines\\r\\n\u2019;<\/span>\r\n\r\n<span style=\"font-weight: 400;\">$headers = \u2018From: <\/span><a href=\"mailto:exampleCompany@example.com\"><span style=\"font-weight: 400;\">exampleCompany@example.com<\/span><\/a><span style=\"font-weight: 400;\">\u2019 . \u201c\\r\\n\u201d .<\/span>\r\n\r\n<span style=\"font-weight: 400;\">\u2018Reply-To: <\/span><a href=\"mailto:exampleCompany@example.com\"><span style=\"font-weight: 400;\">exampleCompany@example.com<\/span><\/a><span style=\"font-weight: 400;\">\u2019 . \u201c\\r\\n\u201d .<\/span>\r\n\r\n<span style=\"font-weight: 400;\">mail($to, $subject, $message, $headers);<\/span>\r\n\r\n<span style=\"font-weight: 400;\">?&gt;<\/span><\/pre>\n<p><a name=\"usingTheFilter\"><\/a><\/p>\n<h3>Using the Filter Function for Forms<\/h3>\n<p><span style=\"font-weight: 400;\">Using the Filter Function for Forms<\/span><\/p>\n<p><span style=\"font-weight: 400;\">If you are using this in a form, you should use the filter function. Filters are used to \u201csanitize\u201d or validate data that comes through your form. <\/span><\/p>\n<p><span style=\"font-weight: 400;\">Email forms are a common target for abuse. It\u2019s no problem if the user enters information as they are supposed to, but sometimes they can do things that break the script. <\/span><\/p>\n<p><span style=\"font-weight: 400;\">Filters help with that. For example, if a user inputs an invalid character into an email, you can use the filter function with an if-else statement to make sure the email is valid. Check out W3School\u2019s <\/span><a href=\"https:\/\/www.w3schools.com\/php\/php_filter.asp\"><span style=\"font-weight: 400;\">PHP filter explanation<\/span><\/a><span style=\"font-weight: 400;\"> to learn more about filters.<\/span><\/p>\n<p>Example:<\/p>\n<p>If the input from a form was:<\/p>\n<pre class=\"prettyprint\">\u00a0email@@example.com<\/pre>\n<p>You would use this code to filter any invalid characters in the address. In this case, the second \"@\" is invalid.<\/p>\n<pre class=\"prettyprint\"><span style=\"font-weight: 400;\">&lt;?php<\/span>\r\n\r\n<span style=\"font-weight: 400;\">\/\/ form populates variable with user email <\/span>\r\n\r\n<span style=\"font-weight: 400;\">$email = \"email@@example.com\";<\/span>\r\n\r\n\r\n\r\n\r\n<span style=\"font-weight: 400;\">\/\/ Checks email for invalid characters<\/span>\r\n\r\n<span style=\"font-weight: 400;\">if (<\/span><span style=\"font-weight: 400;\">filter_var<\/span><span style=\"font-weight: 400;\">($email, <\/span><span style=\"font-weight: 400;\">FILTER_VALIDATE_EMAIL<\/span><span style=\"font-weight: 400;\">)) {<\/span>\r\n\r\n<span style=\"font-weight: 400;\"> \u00a0\u00a0\u00a0echo(\"$email is a valid email address.\");<\/span>\r\n\r\n<span style=\"font-weight: 400;\">} else {<\/span>\r\n\r\n<span style=\"font-weight: 400;\"> \u00a0\u00a0\u00a0echo(\"$email is not a valid email address.\");<\/span>\r\n\r\n<span style=\"font-weight: 400;\">}<\/span>\r\n\r\n<span style=\"font-weight: 400;\">?&gt;<\/span><\/pre>\n<p>The output would be:<\/p>\n<pre>email@@example.com is not a valid email address.<\/pre>\n<p>&nbsp;<\/p>\n<p><span style=\"font-weight: 400; font-family: monospace;\">filter_var()<\/span><span style=\"font-weight: 400;\"> initiates the filter function, and then you can use a filter constant to tell <\/span><span style=\"font-weight: 400; font-family: monospace;\">filter_var()<\/span><span style=\"font-weight: 400;\"> what you want to filter. <\/span><\/p>\n<p><span style=\"font-weight: 400;\">Check out PHP\u2019s <\/span><a href=\"http:\/\/php.net\/manual\/en\/filter.filters.php\"><span style=\"font-weight: 400;\">list of filter constants<\/span><\/a><span style=\"font-weight: 400;\">. This\u00a0list gives you an idea of <\/span><span style=\"font-weight: 400; font-family: monospace;\">filter_var()<\/span><span style=\"font-weight: 400;\"> uses. Correct usage of <\/span><span style=\"font-weight: 400; font-family: monospace;\">filter_var()\u00a0<\/span><span style=\"font-weight: 400;\">can protect your form from user error and keep your PHP scripts running smoothly. <\/span><\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Why Would I Want to Use Email with PHP? PHP is a useful website building tool. It gives the website the ability to automatically run scripts when a button is pushed or someone interacts with a particular part of a site. Using PHP to send emails is often used for&#8230;<\/p>\n","protected":false},"author":11,"comment_status":"closed","ping_status":"closed","template":"","format":"standard","meta":[],"ht-kb-category":[175],"ht-kb-tag":[178,176,177],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.8.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How Do I Send Email with PHP? - Knowledge Base - Pair Networks<\/title>\n<meta name=\"description\" content=\"Using PHP to send emails is often used for forms embedded on the site. When the form is filled and submitted, the PHP script will run, grab the information from the form, and send out an email.\" \/>\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.pair.com\/support\/kb\/how-do-i-send-email-with-php\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How Do I Send Email with PHP? - Knowledge Base - Pair Networks\" \/>\n<meta property=\"og:description\" content=\"Using PHP to send emails is often used for forms embedded on the site. When the form is filled and submitted, the PHP script will run, grab the information from the form, and send out an email.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pair.com\/support\/kb\/how-do-i-send-email-with-php\/\" \/>\n<meta property=\"og:site_name\" content=\"Knowledge Base - Pair Networks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/pairnetworks\/\" \/>\n<meta property=\"article:modified_time\" content=\"2019-02-05T17:08:54+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@pairNetworks\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.pair.com\/support\/kb\/how-do-i-send-email-with-php\/\",\"url\":\"https:\/\/www.pair.com\/support\/kb\/how-do-i-send-email-with-php\/\",\"name\":\"How Do I Send Email with PHP? - Knowledge Base - Pair Networks\",\"isPartOf\":{\"@id\":\"https:\/\/www.pair.com\/support\/kb\/#website\"},\"datePublished\":\"2017-08-08T13:54:48+00:00\",\"dateModified\":\"2019-02-05T17:08:54+00:00\",\"description\":\"Using PHP to send emails is often used for forms embedded on the site. When the form is filled and submitted, the PHP script will run, grab the information from the form, and send out an email.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.pair.com\/support\/kb\/how-do-i-send-email-with-php\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.pair.com\/support\/kb\/how-do-i-send-email-with-php\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.pair.com\/support\/kb\/how-do-i-send-email-with-php\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.pair.com\/support\/kb\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How Do I Send Email with PHP?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.pair.com\/support\/kb\/#website\",\"url\":\"https:\/\/www.pair.com\/support\/kb\/\",\"name\":\"Knowledge Base - Pair Networks\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.pair.com\/support\/kb\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.pair.com\/support\/kb\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.pair.com\/support\/kb\/#organization\",\"name\":\"Pair Networks\",\"url\":\"https:\/\/www.pair.com\/support\/kb\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.pair.com\/support\/kb\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.pair.com\/support\/kb\/wp-content\/uploads\/2022\/02\/Gb_TUkUE_400x400.jpeg\",\"contentUrl\":\"https:\/\/www.pair.com\/support\/kb\/wp-content\/uploads\/2022\/02\/Gb_TUkUE_400x400.jpeg\",\"width\":360,\"height\":360,\"caption\":\"Pair Networks\"},\"image\":{\"@id\":\"https:\/\/www.pair.com\/support\/kb\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/pairnetworks\/\",\"https:\/\/twitter.com\/pairNetworks\",\"https:\/\/www.instagram.com\/pairnetworks\/\",\"https:\/\/www.linkedin.com\/company\/2269676\/\",\"https:\/\/www.pinterest.com\/pairnetworksinc\/pins\/\",\"https:\/\/www.youtube.com\/user\/pairnetworks\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How Do I Send Email with PHP? - Knowledge Base - Pair Networks","description":"Using PHP to send emails is often used for forms embedded on the site. When the form is filled and submitted, the PHP script will run, grab the information from the form, and send out an email.","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.pair.com\/support\/kb\/how-do-i-send-email-with-php\/","og_locale":"en_US","og_type":"article","og_title":"How Do I Send Email with PHP? - Knowledge Base - Pair Networks","og_description":"Using PHP to send emails is often used for forms embedded on the site. When the form is filled and submitted, the PHP script will run, grab the information from the form, and send out an email.","og_url":"https:\/\/www.pair.com\/support\/kb\/how-do-i-send-email-with-php\/","og_site_name":"Knowledge Base - Pair Networks","article_publisher":"https:\/\/www.facebook.com\/pairnetworks\/","article_modified_time":"2019-02-05T17:08:54+00:00","twitter_card":"summary_large_image","twitter_site":"@pairNetworks","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.pair.com\/support\/kb\/how-do-i-send-email-with-php\/","url":"https:\/\/www.pair.com\/support\/kb\/how-do-i-send-email-with-php\/","name":"How Do I Send Email with PHP? - Knowledge Base - Pair Networks","isPartOf":{"@id":"https:\/\/www.pair.com\/support\/kb\/#website"},"datePublished":"2017-08-08T13:54:48+00:00","dateModified":"2019-02-05T17:08:54+00:00","description":"Using PHP to send emails is often used for forms embedded on the site. When the form is filled and submitted, the PHP script will run, grab the information from the form, and send out an email.","breadcrumb":{"@id":"https:\/\/www.pair.com\/support\/kb\/how-do-i-send-email-with-php\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pair.com\/support\/kb\/how-do-i-send-email-with-php\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.pair.com\/support\/kb\/how-do-i-send-email-with-php\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pair.com\/support\/kb\/"},{"@type":"ListItem","position":2,"name":"How Do I Send Email with PHP?"}]},{"@type":"WebSite","@id":"https:\/\/www.pair.com\/support\/kb\/#website","url":"https:\/\/www.pair.com\/support\/kb\/","name":"Knowledge Base - Pair Networks","description":"","publisher":{"@id":"https:\/\/www.pair.com\/support\/kb\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.pair.com\/support\/kb\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.pair.com\/support\/kb\/#organization","name":"Pair Networks","url":"https:\/\/www.pair.com\/support\/kb\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.pair.com\/support\/kb\/#\/schema\/logo\/image\/","url":"https:\/\/www.pair.com\/support\/kb\/wp-content\/uploads\/2022\/02\/Gb_TUkUE_400x400.jpeg","contentUrl":"https:\/\/www.pair.com\/support\/kb\/wp-content\/uploads\/2022\/02\/Gb_TUkUE_400x400.jpeg","width":360,"height":360,"caption":"Pair Networks"},"image":{"@id":"https:\/\/www.pair.com\/support\/kb\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/pairnetworks\/","https:\/\/twitter.com\/pairNetworks","https:\/\/www.instagram.com\/pairnetworks\/","https:\/\/www.linkedin.com\/company\/2269676\/","https:\/\/www.pinterest.com\/pairnetworksinc\/pins\/","https:\/\/www.youtube.com\/user\/pairnetworks"]}]}},"_links":{"self":[{"href":"https:\/\/www.pair.com\/support\/kb\/wp-json\/wp\/v2\/ht-kb\/2095"}],"collection":[{"href":"https:\/\/www.pair.com\/support\/kb\/wp-json\/wp\/v2\/ht-kb"}],"about":[{"href":"https:\/\/www.pair.com\/support\/kb\/wp-json\/wp\/v2\/types\/ht_kb"}],"author":[{"embeddable":true,"href":"https:\/\/www.pair.com\/support\/kb\/wp-json\/wp\/v2\/users\/11"}],"replies":[{"embeddable":true,"href":"https:\/\/www.pair.com\/support\/kb\/wp-json\/wp\/v2\/comments?post=2095"}],"version-history":[{"count":13,"href":"https:\/\/www.pair.com\/support\/kb\/wp-json\/wp\/v2\/ht-kb\/2095\/revisions"}],"predecessor-version":[{"id":6423,"href":"https:\/\/www.pair.com\/support\/kb\/wp-json\/wp\/v2\/ht-kb\/2095\/revisions\/6423"}],"wp:attachment":[{"href":"https:\/\/www.pair.com\/support\/kb\/wp-json\/wp\/v2\/media?parent=2095"}],"wp:term":[{"taxonomy":"ht_kb_category","embeddable":true,"href":"https:\/\/www.pair.com\/support\/kb\/wp-json\/wp\/v2\/ht-kb-category?post=2095"},{"taxonomy":"ht_kb_tag","embeddable":true,"href":"https:\/\/www.pair.com\/support\/kb\/wp-json\/wp\/v2\/ht-kb-tag?post=2095"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}