{"id":2299,"date":"2022-08-05T00:00:00","date_gmt":"2022-08-05T00:00:00","guid":{"rendered":"https:\/\/www.mailboxvalidator.com\/resources3\/articles\/email-validation-in-node-js\/"},"modified":"2022-08-05T00:00:00","modified_gmt":"2022-08-05T00:00:00","password":"","slug":"email-validation-in-node-js","status":"publish","type":"docs","link":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/email-validation-in-node-js\/","title":{"rendered":"Email validation in Node.js"},"content":{"rendered":"\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><a href=\"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2022\/08\/mbv-newsletter-top-img.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2022\/08\/mbv-newsletter-top-img.jpg\" alt=\"Email validation in Node.js\" class=\"wp-image-1921\" width=\"800\" height=\"400\" srcset=\"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2022\/08\/mbv-newsletter-top-img.jpg 1200w, https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2022\/08\/mbv-newsletter-top-img-300x150.jpg 300w, https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2022\/08\/mbv-newsletter-top-img-1024x512.jpg 1024w, https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2022\/08\/mbv-newsletter-top-img-768x384.jpg 768w, https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2022\/08\/mbv-newsletter-top-img-50x25.jpg 50w, https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2022\/08\/mbv-newsletter-top-img-920x460.jpg 920w, https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2022\/08\/mbv-newsletter-top-img-600x300.jpg 600w, https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2022\/08\/mbv-newsletter-top-img-320x160.jpg 320w\" sizes=\"auto, (max-width: 800px) 100vw, 800px\" \/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Intro<\/h2>\n\n\n\n<p>MailboxValidator is an email validation service to clean mailing lists of stale and unreachable emails. There are 2 ways to utilize the MailboxValidator service. The easiest way is to subscribe for a BULK plan. This allows a user to just simply upload a text or CSV file containing their email list to our website. Then just wait for the validation process to complete. Advanced users will prefer to use our REST-based API instead. It can be used to query a single email address to check its validity. The results are returned almost immediately.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How can MailboxValidator help marketers and developers?<\/h2>\n\n\n\n<p>At first glance, you might think that using regular expressions can easily detect invalid email addresses. Unfortunately, that is wrong. First of all, regular expression only checks the syntax of the email address. It does not tell you whether that email address actually exists. Nor can it detect whether the email domain is non-existent.<\/p>\n\n\n\n<p>MailboxValidator, on the other hand, performs checks on the email address syntax. Next, it will check for the existence of the email domain. Following that, it will check if the email address actually exists. Last but not least, it will let you know if the email address came from a free or disposable email provider.<\/p>\n\n\n\n<p>All of these validation features are geared towards marketers and developers to help them reduce their bounce rate, thus helping them to avoid being blacklisted.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Easy integration with multiple SDKs and plugins<\/h2>\n\n\n\n<p>We believe that email validation should be easy enough for anyone to use. Hence, we\u00e2\u20ac\u2122ve created a bunch of <a href=\"https:\/\/www.mailboxvalidator.com\/sdk\">SDKs<\/a> and <a href=\"https:\/\/www.mailboxvalidator.com\/extensions\">extensions<\/a> to help you get started. If you\u00e2\u20ac\u2122re using an Email Sending Provider (ESP) like MailChimp, Aweber, Sendgrid, HubSpot and so on, we\u00e2\u20ac\u2122ve got you covered with our list of <a href=\"https:\/\/www.mailboxvalidator.com\/integrations\">integrations<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Let\u00e2\u20ac\u2122s take a look at email validation in Node.js<\/h2>\n\n\n\n<p>Node.js developers will be glad to know we have an <a href=\"https:\/\/www.mailboxvalidator.com\/nodejs\">email validation module<\/a> ready for use. Just install the module using the below command.<\/p>\n\n\n\n<p><code>npm install mailboxvalidator-nodejs<\/code><\/p>\n\n\n\n<p>You\u00e2\u20ac\u2122ll also need the MailboxValidator API key. If you don\u00e2\u20ac\u2122t have one, you can subscribe for one at <a href=\"https:\/\/www.mailboxvalidator.com\/plans#api\">https:\/\/www.mailboxvalidator.com\/plans#api<\/a><\/p>\n\n\n\n<p>Usage is also very straightforward as the example below shows. Just remember to edit the code and put in your API key.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>var mbv = require(\"mailboxvalidator-nodejs\");\n\nmbv.MailboxValidator_init(\"YOUR_API_KEY\");\n\nmbv.MailboxValidator_single_query(\"example@example.com\", mbv_read_single);\n\nfunction mbv_read_single(err, res, data) {\n\tif (!err &amp;&amp; res.statusCode == 200) {\n\t\tconsole.log(\"email_address: \" + data.email_address);\n\t\tconsole.log(\"domain: \" + data.domain);\n\t\tconsole.log(\"is_free: \" + data.is_free);\n\t\tconsole.log(\"is_syntax: \" + data.is_syntax);\n\t\tconsole.log(\"is_domain: \" + data.is_domain);\n\t\tconsole.log(\"is_smtp: \" + data.is_smtp);\n\t\tconsole.log(\"is_verified: \" + data.is_verified);\n\t\tconsole.log(\"is_server_down: \" + data.is_server_down);\n\t\tconsole.log(\"is_greylisted: \" + data.is_greylisted);\n\t\tconsole.log(\"is_disposable: \" + data.is_disposable);\n\t\tconsole.log(\"is_suppressed: \" + data.is_suppressed);\n\t\tconsole.log(\"is_role: \" + data.is_role);\n\t\tconsole.log(\"is_high_risk: \" + data.is_high_risk);\n\t\tconsole.log(\"is_catchall: \" + data.is_catchall);\n\t\tconsole.log(\"mailboxvalidator_score: \" + data.mailboxvalidator_score);\n\t\tconsole.log(\"time_taken: \" + data.time_taken);\n\t\tconsole.log(\"status: \" + data.status);\n\t\tconsole.log(\"credits_available: \" + data.credits_available);\n\t\tconsole.log(\"error_code: \" + data.error_code);\n\t\tconsole.log(\"error_message: \" + data.error_message);\n\t}\n}\n<\/code><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to interpret the result fields?<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">email_address<\/h3>\n\n\n\n<p>The input email address.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">domain<\/h3>\n\n\n\n<p>The domain of the email address.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">is_free<\/h3>\n\n\n\n<p>Whether the email address is from a free email provider like Gmail or Hotmail.<\/p>\n\n\n\n<p>Return values: True, False<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">is_syntax<\/h3>\n\n\n\n<p>Whether the email address is syntactically correct.<\/p>\n\n\n\n<p>Return values: True, False<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">is_domain<\/h3>\n\n\n\n<p>Whether the email address has a valid MX record in its DNS entries.<\/p>\n\n\n\n<p>Return values: True, False (- means not applicable)<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">is_smtp<\/h3>\n\n\n\n<p>Whether the mail servers specified in the MX records are responding to connections.<\/p>\n\n\n\n<p>Return values: True, False (- means not applicable)<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">is_verified<\/h3>\n\n\n\n<p>Whether the mail server confirms that the email address actually exists.<\/p>\n\n\n\n<p>Return values: True, False (- means not applicable)<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">is_server_down<\/h3>\n\n\n\n<p>Whether the mail server is currently down or unresponsive.<\/p>\n\n\n\n<p>Return values: True, False (- means not applicable)<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">is_greylisted<\/h3>\n\n\n\n<p>Whether the mail server employs greylisting where an email has to be sent a second time at a later time.<\/p>\n\n\n\n<p>Return values: True, False (- means not applicable)<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">is_disposable<\/h3>\n\n\n\n<p>Whether the email address is a temporary one from a disposable email provider.<\/p>\n\n\n\n<p>Return values: True, False (- means not applicable)<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">is_suppressed<\/h3>\n\n\n\n<p>Whether the email address is in our blacklist.<\/p>\n\n\n\n<p>Return values: True, False (- means not applicable)<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">is_role<\/h3>\n\n\n\n<p>Whether the email address is a role-based email address like admin@example.net or webmaster@example.net.<\/p>\n\n\n\n<p>Return values: True, False (- means not applicable)<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">is_high_risk<\/h3>\n\n\n\n<p>Whether the email address contains high risk keywords.<\/p>\n\n\n\n<p>Return values: True, False (- means not applicable)<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">is_catchall<\/h3>\n\n\n\n<p>Whether the email address is a catch-all address.<\/p>\n\n\n\n<p>Return values: True, False, Unknown (- means not applicable)<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">mailboxvalidator_score<\/h3>\n\n\n\n<p>Email address reputation score.<\/p>\n\n\n\n<p>Score &gt; 0.70 means good; score &gt; 0.40 means fair; score &lt;= 0.40 means poor.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">time_taken<\/h3>\n\n\n\n<p>The time taken to get the results in seconds.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">status<\/h3>\n\n\n\n<p>Whether our system think the email address is valid based on all the previous fields.<\/p>\n\n\n\n<p>Return values: True, False<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">credits_available<\/h3>\n\n\n\n<p>The number of credits left to perform validations.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">error_code<\/h3>\n\n\n\n<p>The error code if there is any error.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">error_message<\/h3>\n\n\n\n<p>The error message if there is any error.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>As you can see, it\u00e2\u20ac\u2122s so easy to integrate the MailboxValidator email validation in Node.js. The validation results are comprehensive and easy to understand. Best of all, there is a free API plan to help you get started.<\/p>\n\n\n\n<p><a href=\"https:\/\/www.mailboxvalidator.com\/plans#api\">https:\/\/www.mailboxvalidator.com\/plans#api<\/a><\/p>\n\n\n\n<div class=\"youtube-responsive-container\"><iframe loading=\"lazy\" width=\"560\" height=\"315\" src=\"https:\/\/www.youtube.com\/embed\/Ez_wERm_QVo?si=clGX8E7jlhmerVDu\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen><\/iframe><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Intro MailboxValidator is an email validation service to clean mailing lists of stale and unreachable emails. There are 2 ways [&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":[67,69],"doc_tag":[],"class_list":["post-2299","docs","type-docs","status-publish","hentry","doc_category-mailboxvalidator-articles","doc_category-technical-articles"],"year_month":"2026-05","word_count":957,"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":"MailboxValidator Articles","term_url":"https:\/\/www.mailboxvalidator.com\/resources\/article-categories\/mailboxvalidator-articles\/"},{"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.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Email validation in Node.js -<\/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\/email-validation-in-node-js\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Email validation in Node.js -\" \/>\n<meta property=\"og:description\" content=\"Intro MailboxValidator is an email validation service to clean mailing lists of stale and unreachable emails. There are 2 ways [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.mailboxvalidator.com\/resources\/articles\/email-validation-in-node-js\/\" \/>\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\/2022\/08\/mbv-newsletter-top-img.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\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=\"5 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\\\/email-validation-in-node-js\\\/\",\"url\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/articles\\\/email-validation-in-node-js\\\/\",\"name\":\"Email validation in Node.js -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/articles\\\/email-validation-in-node-js\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/articles\\\/email-validation-in-node-js\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/mbv-newsletter-top-img.jpg\",\"datePublished\":\"2022-08-05T00:00:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/articles\\\/email-validation-in-node-js\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/articles\\\/email-validation-in-node-js\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/articles\\\/email-validation-in-node-js\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/mbv-newsletter-top-img.jpg\",\"contentUrl\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/mbv-newsletter-top-img.jpg\",\"width\":1200,\"height\":600},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/articles\\\/email-validation-in-node-js\\\/#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\":\"Email validation in Node.js\"}]},{\"@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":"Email validation in Node.js -","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\/email-validation-in-node-js\/","og_locale":"en_US","og_type":"article","og_title":"Email validation in Node.js -","og_description":"Intro MailboxValidator is an email validation service to clean mailing lists of stale and unreachable emails. There are 2 ways [&hellip;]","og_url":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/email-validation-in-node-js\/","article_publisher":"https:\/\/www.facebook.com\/mailboxvalidator","og_image":[{"width":1200,"height":600,"url":"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2022\/08\/mbv-newsletter-top-img.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_site":"@MailBoxV","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/email-validation-in-node-js\/","url":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/email-validation-in-node-js\/","name":"Email validation in Node.js -","isPartOf":{"@id":"https:\/\/www.mailboxvalidator.com\/resources\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/email-validation-in-node-js\/#primaryimage"},"image":{"@id":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/email-validation-in-node-js\/#primaryimage"},"thumbnailUrl":"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2022\/08\/mbv-newsletter-top-img.jpg","datePublished":"2022-08-05T00:00:00+00:00","breadcrumb":{"@id":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/email-validation-in-node-js\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.mailboxvalidator.com\/resources\/articles\/email-validation-in-node-js\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/email-validation-in-node-js\/#primaryimage","url":"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2022\/08\/mbv-newsletter-top-img.jpg","contentUrl":"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2022\/08\/mbv-newsletter-top-img.jpg","width":1200,"height":600},{"@type":"BreadcrumbList","@id":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/email-validation-in-node-js\/#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":"Email validation in Node.js"}]},{"@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\/2299","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=2299"}],"version-history":[{"count":0,"href":"https:\/\/www.mailboxvalidator.com\/resources\/wp-json\/wp\/v2\/docs\/2299\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.mailboxvalidator.com\/resources\/wp-json\/wp\/v2\/media?parent=2299"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/www.mailboxvalidator.com\/resources\/wp-json\/wp\/v2\/doc_category?post=2299"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/www.mailboxvalidator.com\/resources\/wp-json\/wp\/v2\/doc_tag?post=2299"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}