{"id":2217,"date":"2018-11-26T00:00:00","date_gmt":"2018-11-26T00:00:00","guid":{"rendered":"https:\/\/www.mailboxvalidator.com\/resources3\/articles\/how-to-use-mailboxvalidator-cakephp-email-validation-plugin-to-validate-email-during-registration\/"},"modified":"2018-11-26T00:00:00","modified_gmt":"2018-11-26T00:00:00","password":"","slug":"how-to-use-mailboxvalidator-cakephp-email-validation-plugin-to-validate-email-during-registration","status":"publish","type":"docs","link":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/how-to-use-mailboxvalidator-cakephp-email-validation-plugin-to-validate-email-during-registration\/","title":{"rendered":"How to use MailboxValidator CakePHP Email Validation Plugin to validate email during registration"},"content":{"rendered":"<figure id=\"attachment_497\" aria-describedby=\"caption-attachment-497\" style=\"width: 500px\" class=\"wp-caption aligncenter\"><a href=\"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2018\/12\/cakephp.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-497 size-full\" src=\"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2018\/12\/cakephp.jpg\" alt=\"CakePHP Email Validation Plugin to validate email during registration \" width=\"500\" height=\"286\" \/><\/a><figcaption id=\"caption-attachment-497\" class=\"wp-caption-text\">CakePHP Email Validation Plugin to validate email during registration<\/figcaption><\/figure>\n<h2>Overview<\/h2>\n<p>The\u00c2\u00a0MailboxValidator CakePHP Email Validation Plugin is an easy to use CakePHP plugin which enables CakePHP users to validate emails with just a few lines of code. This package is using the MailboxValidator API to do the validation, therefore you must sign up for a free API key.\u00c2\u00a0 Just go to\u00c2\u00a0\u00c2\u00a0<a href=\"https:\/\/www.mailboxvalidator.com\/plans#api\">https:\/\/www.mailboxvalidator.com\/plans#api<\/a>\u00c2\u00a0to sign up for the FREE API plan and you\u00e2\u20ac\u2122ll be given a free API key. After you get your API key, open your config\/bootstrap.php and add the following line:<code>Configure::write('MBV_API_KEY','PASTE_YOUR_API_KEY_HERE');<\/code><\/p>\n<h2>Installation<\/h2>\n<p>Once you have the API key, the next step is to install the plugin. If you prefer to manage the plugin by using Composer, open your terminal, navigate to your project root directory and type the following command :<code>composer require mailboxvalidator\/mailboxvalidator-cakephp<\/code><\/p>\n<p>Composer will then install the plugin into your web application. If you want to manually install the plugin, clone the plugin repository from <a href=\"https:\/\/github.com\/MailboxValidator\/mailboxvalidator-cakephp\" target=\"_blank\" rel=\"noopener\">here<\/a> first. Then extract and copy to the &#8216;plugins&#8217; folder under your web project root directory. After that, open your config\/bootstrap.php file and add this line:<code>Plugin::load('MailboxValidatorCakePHP', ['bootstrap' =&gt; false, 'routes' =&gt; true, 'autoload' =&gt; true]);<\/code><\/p>\n<h2>Usage<\/h2>\n<p>Include this line in any form controller that handles validation:<code>use MailboxValidatorCakePHPControllerMailboxValidatorController;<\/code><\/p>\n<p>In any form validation method, before the $validator declare this line:<code>$MBV = new MailboxValidatorController();<\/code><\/p>\n<p>Add the below line right after the $validator:<code>-&gt;provider('mbv', $MBV)<\/code><\/p>\n<p>After that, add a new rule to your form field and edit the error message. For example, if you want to validate the disposable email, your rule will be like this:<code>-&gt;add('email', 'disposable', [<br \/>\n'rule' =&gt; 'disposable',<br \/>\n'provider' =&gt; 'mbv',<br \/>\n'message' =&gt; 'Invalid email address. Please enter a non-disposable email address.',<br \/>\n])<\/code><\/p>\n<p>The plugin provides three different validation method: disposable, single and free. Single Validation will validate the email address based on several factors, such as whether the email address contains high risk keywords or whether the email address is in our blacklist. Disposable validation will validate whether the email address belongs to a disposable email service provider or not. Free validation will validate whether the email address belongs to a free email service provider or not.<\/p>\n<p>Now you can try to open your registration form and enter a disposable email address. The validator should return an error message once the submit button is clicked.<\/p>\n<p><a href=\"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2018\/11\/cakephp1.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-461 size-full\" src=\"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2018\/11\/cakephp1.png\" alt=\"Example output of invalid email address\" width=\"634\" height=\"211\" srcset=\"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2018\/11\/cakephp1.png 634w, https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2018\/11\/cakephp1-300x100.png 300w, https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2018\/11\/cakephp1-50x17.png 50w, https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2018\/11\/cakephp1-600x200.png 600w, https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2018\/11\/cakephp1-320x106.png 320w\" sizes=\"auto, (max-width: 634px) 100vw, 634px\" \/><\/a><\/p>\n<hr \/>\n<h2><\/h2>\n<h2 class=\"m-bottom-5\" style=\"text-align: center;\">Get started with MailboxValidator<\/h2>\n<p class=\"m-bottom-5 is-size-20\" style=\"text-align: center;\">Improve your email deliverability and sender reputation in email marketing.<\/p>\n<p class=\"m-bottom-5 is-size-20\" style=\"text-align: center;\">Register today and clean your email lists for <strong>FREE<\/strong>!<\/p>\n<p style=\"text-align: center;\"><a class=\"maxbutton-1 maxbutton maxbutton-sign-up-bulk-trial\" target=\"_blank\" title=\"No Setup Fee. Sign Up Trial Today!\" rel=\"noopener\" href=\"https:\/\/www.mailboxvalidator.com\/plans#mailboxvalidator-freesignup\"><span class='mb-text'>GET STARTED FOR FREE<\/span><\/a><\/p>\n<hr \/>\n","protected":false},"excerpt":{"rendered":"<p>Overview The\u00c2\u00a0MailboxValidator CakePHP Email Validation Plugin is an easy to use CakePHP plugin which enables CakePHP users to validate emails [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"doc_category":[69],"doc_tag":[],"class_list":["post-2217","docs","type-docs","status-publish","hentry","doc_category-technical-articles"],"year_month":"2026-05","word_count":445,"total_views":0,"reactions":{"happy":0,"normal":0,"sad":0},"author_info":{"name":"mbv_editor","author_nicename":"mbv_editor","author_url":"https:\/\/www.mailboxvalidator.com\/resources\/author\/mbv_editor\/"},"doc_category_info":[{"term_name":"Technical Articles","term_url":"https:\/\/www.mailboxvalidator.com\/resources\/article-categories\/technical-articles\/"}],"doc_tag_info":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to use MailboxValidator CakePHP Email Validation Plugin to validate email during registration -<\/title>\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.mailboxvalidator.com\/resources\/articles\/how-to-use-mailboxvalidator-cakephp-email-validation-plugin-to-validate-email-during-registration\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to use MailboxValidator CakePHP Email Validation Plugin to validate email during registration -\" \/>\n<meta property=\"og:description\" content=\"Overview The\u00c2\u00a0MailboxValidator CakePHP Email Validation Plugin is an easy to use CakePHP plugin which enables CakePHP users to validate emails [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.mailboxvalidator.com\/resources\/articles\/how-to-use-mailboxvalidator-cakephp-email-validation-plugin-to-validate-email-during-registration\/\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/mailboxvalidator\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2018\/12\/cakephp.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1\" \/>\n\t<meta property=\"og:image:height\" content=\"1\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@MailBoxV\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/articles\\\/how-to-use-mailboxvalidator-cakephp-email-validation-plugin-to-validate-email-during-registration\\\/\",\"url\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/articles\\\/how-to-use-mailboxvalidator-cakephp-email-validation-plugin-to-validate-email-during-registration\\\/\",\"name\":\"How to use MailboxValidator CakePHP Email Validation Plugin to validate email during registration -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/articles\\\/how-to-use-mailboxvalidator-cakephp-email-validation-plugin-to-validate-email-during-registration\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/articles\\\/how-to-use-mailboxvalidator-cakephp-email-validation-plugin-to-validate-email-during-registration\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/wp-content\\\/uploads\\\/2018\\\/12\\\/cakephp.jpg\",\"datePublished\":\"2018-11-26T00:00:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/articles\\\/how-to-use-mailboxvalidator-cakephp-email-validation-plugin-to-validate-email-during-registration\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/articles\\\/how-to-use-mailboxvalidator-cakephp-email-validation-plugin-to-validate-email-during-registration\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/articles\\\/how-to-use-mailboxvalidator-cakephp-email-validation-plugin-to-validate-email-during-registration\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/wp-content\\\/uploads\\\/2018\\\/12\\\/cakephp.jpg\",\"contentUrl\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/wp-content\\\/uploads\\\/2018\\\/12\\\/cakephp.jpg\",\"caption\":\"CakePHP Email Validation Plugin to validate email during registration\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/articles\\\/how-to-use-mailboxvalidator-cakephp-email-validation-plugin-to-validate-email-during-registration\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Knowledge Base\",\"item\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/articles\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to use MailboxValidator CakePHP Email Validation Plugin to validate email during registration\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/#website\",\"url\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/\",\"name\":\"MailboxValidator Articles\",\"description\":\"MailboxValidator Articles\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/#organization\",\"name\":\"MailboxValidator\",\"url\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/cropped-mailboxvalidator-fb-logo.png\",\"contentUrl\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/cropped-mailboxvalidator-fb-logo.png\",\"width\":1199,\"height\":399,\"caption\":\"MailboxValidator\"},\"image\":{\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/mailboxvalidator\",\"https:\\\/\\\/x.com\\\/MailBoxV\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/mailboxvalidator\\\/\",\"https:\\\/\\\/www.pinterest.com\\\/mailboxvalidator\\\/\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCesIP5V7nXRXthaqdjjfCFg\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to use MailboxValidator CakePHP Email Validation Plugin to validate email during registration -","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.mailboxvalidator.com\/resources\/articles\/how-to-use-mailboxvalidator-cakephp-email-validation-plugin-to-validate-email-during-registration\/","og_locale":"en_US","og_type":"article","og_title":"How to use MailboxValidator CakePHP Email Validation Plugin to validate email during registration -","og_description":"Overview The\u00c2\u00a0MailboxValidator CakePHP Email Validation Plugin is an easy to use CakePHP plugin which enables CakePHP users to validate emails [&hellip;]","og_url":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/how-to-use-mailboxvalidator-cakephp-email-validation-plugin-to-validate-email-during-registration\/","article_publisher":"https:\/\/www.facebook.com\/mailboxvalidator","og_image":[{"url":"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2018\/12\/cakephp.jpg","width":1,"height":1,"type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_site":"@MailBoxV","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/how-to-use-mailboxvalidator-cakephp-email-validation-plugin-to-validate-email-during-registration\/","url":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/how-to-use-mailboxvalidator-cakephp-email-validation-plugin-to-validate-email-during-registration\/","name":"How to use MailboxValidator CakePHP Email Validation Plugin to validate email during registration -","isPartOf":{"@id":"https:\/\/www.mailboxvalidator.com\/resources\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/how-to-use-mailboxvalidator-cakephp-email-validation-plugin-to-validate-email-during-registration\/#primaryimage"},"image":{"@id":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/how-to-use-mailboxvalidator-cakephp-email-validation-plugin-to-validate-email-during-registration\/#primaryimage"},"thumbnailUrl":"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2018\/12\/cakephp.jpg","datePublished":"2018-11-26T00:00:00+00:00","breadcrumb":{"@id":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/how-to-use-mailboxvalidator-cakephp-email-validation-plugin-to-validate-email-during-registration\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.mailboxvalidator.com\/resources\/articles\/how-to-use-mailboxvalidator-cakephp-email-validation-plugin-to-validate-email-during-registration\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/how-to-use-mailboxvalidator-cakephp-email-validation-plugin-to-validate-email-during-registration\/#primaryimage","url":"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2018\/12\/cakephp.jpg","contentUrl":"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2018\/12\/cakephp.jpg","caption":"CakePHP Email Validation Plugin to validate email during registration"},{"@type":"BreadcrumbList","@id":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/how-to-use-mailboxvalidator-cakephp-email-validation-plugin-to-validate-email-during-registration\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.mailboxvalidator.com\/resources\/"},{"@type":"ListItem","position":2,"name":"Knowledge Base","item":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/"},{"@type":"ListItem","position":3,"name":"How to use MailboxValidator CakePHP Email Validation Plugin to validate email during registration"}]},{"@type":"WebSite","@id":"https:\/\/www.mailboxvalidator.com\/resources\/#website","url":"https:\/\/www.mailboxvalidator.com\/resources\/","name":"MailboxValidator Articles","description":"MailboxValidator Articles","publisher":{"@id":"https:\/\/www.mailboxvalidator.com\/resources\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.mailboxvalidator.com\/resources\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.mailboxvalidator.com\/resources\/#organization","name":"MailboxValidator","url":"https:\/\/www.mailboxvalidator.com\/resources\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mailboxvalidator.com\/resources\/#\/schema\/logo\/image\/","url":"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2017\/11\/cropped-mailboxvalidator-fb-logo.png","contentUrl":"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2017\/11\/cropped-mailboxvalidator-fb-logo.png","width":1199,"height":399,"caption":"MailboxValidator"},"image":{"@id":"https:\/\/www.mailboxvalidator.com\/resources\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/mailboxvalidator","https:\/\/x.com\/MailBoxV","https:\/\/www.linkedin.com\/company\/mailboxvalidator\/","https:\/\/www.pinterest.com\/mailboxvalidator\/","https:\/\/www.youtube.com\/channel\/UCesIP5V7nXRXthaqdjjfCFg"]}]}},"_links":{"self":[{"href":"https:\/\/www.mailboxvalidator.com\/resources\/wp-json\/wp\/v2\/docs\/2217","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.mailboxvalidator.com\/resources\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/www.mailboxvalidator.com\/resources\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/www.mailboxvalidator.com\/resources\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.mailboxvalidator.com\/resources\/wp-json\/wp\/v2\/comments?post=2217"}],"version-history":[{"count":0,"href":"https:\/\/www.mailboxvalidator.com\/resources\/wp-json\/wp\/v2\/docs\/2217\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.mailboxvalidator.com\/resources\/wp-json\/wp\/v2\/media?parent=2217"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/www.mailboxvalidator.com\/resources\/wp-json\/wp\/v2\/doc_category?post=2217"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/www.mailboxvalidator.com\/resources\/wp-json\/wp\/v2\/doc_tag?post=2217"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}