{"id":2169,"date":"2017-08-21T00:00:00","date_gmt":"2017-08-21T00:00:00","guid":{"rendered":"https:\/\/www.mailboxvalidator.com\/resources3\/articles\/how-to-create-a-simple-email-blaster-using-vb-net\/"},"modified":"2017-08-21T00:00:00","modified_gmt":"2017-08-21T00:00:00","password":"","slug":"how-to-create-a-simple-email-blaster-using-vb-net","status":"publish","type":"docs","link":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/how-to-create-a-simple-email-blaster-using-vb-net\/","title":{"rendered":"How to create a simple email blaster using VB.NET"},"content":{"rendered":"<div class=\"headline\">\n<h2><a href=\"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2020\/01\/mbv_articles_img23_email_blaster.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-post-mid wp-image-1135\" src=\"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2020\/01\/mbv_articles_img23_email_blaster-600x300.jpg\" alt=\"How to create a simple email blaster using VB.NET\" width=\"600\" height=\"300\" srcset=\"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2020\/01\/mbv_articles_img23_email_blaster-600x300.jpg 600w, https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2020\/01\/mbv_articles_img23_email_blaster-300x150.jpg 300w, https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2020\/01\/mbv_articles_img23_email_blaster-1024x512.jpg 1024w, https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2020\/01\/mbv_articles_img23_email_blaster-768x384.jpg 768w, https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2020\/01\/mbv_articles_img23_email_blaster-50x25.jpg 50w, https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2020\/01\/mbv_articles_img23_email_blaster-920x460.jpg 920w, https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2020\/01\/mbv_articles_img23_email_blaster-320x160.jpg 320w, https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2020\/01\/mbv_articles_img23_email_blaster.jpg 1200w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/a><\/h2>\n<h2>Creating a simple email blaster<\/h2>\n<\/div>\n<p>When you perform email marketing, you will be sending out large quantities of emails to perhaps thousands of recipients. Doing this in a normal email client like Microsoft Outlook is a very tedious process. That&#8217;s why most people will either use an email blaster program or engage the services of Email Sending Providers for a fee. Here, we will show you a simple VB.NET command-line program to blast out emails.<\/p>\n<div class=\"headline\">\n<h2>Pre-requisites<\/h2>\n<\/div>\n<p>You will need to have a basic understanding of the VB.NET programming language and you should also have Microsoft Visual Studio 2012 or later installed on your computer.<\/p>\n<div class=\"headline\">\n<h2>Creating the mailing list recipients and email template<\/h2>\n<\/div>\n<p>For the mailing list recipients, create a text file called <strong>emails.txt<\/strong> and write one recipient email address per line. As for the email template, create a text file called <strong>template.txt<\/strong> and in this file, the first line will be the email subject. The rest of the lines are considered to be the email content.<\/p>\n<div class=\"headline\">\n<h2>Compiling the codes<\/h2>\n<\/div>\n<p>Open Visual Studio and click <strong>New Project<\/strong>. Under <strong>Templates<\/strong> &gt; <strong>Visual Basic<\/strong> &gt; <strong>Windows<\/strong>, select <strong>Console Application<\/strong>.<\/p>\n<p>Name your project <strong>EmailBlaster<\/strong> and then click <strong>OK<\/strong>.<\/p>\n<p><a href=\"http:\/\/www.mailboxvalidator.com\/images\/article\/visualbasicproject.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone\" src=\"http:\/\/www.mailboxvalidator.com\/images\/article\/visualbasicproject.jpg\" alt=\"In your Visual Studio, create a new Console Application\" width=\"953\" height=\"595\" \/><\/a><\/p>\n<p>Once your project has been created, you will see a file called Module1.vb. Edit that file and paste the following code in it. Remember to modify the code for your own settings.<\/p>\n<p>You can modify the values in the following variables:<\/p>\n<ul>\n<li><strong>emailfile<\/strong> should contain the full path to the <strong>emails.txt<\/strong> file.<\/li>\n<li><strong>templatefile<\/strong> should contain the full path to the <strong>template.txt<\/strong> file.<\/li>\n<li><strong>fromname<\/strong> is the name of the sender, meaning your name.<\/li>\n<li><strong>fromemail<\/strong> is the email address of the sender, meaning your email address.<\/li>\n<li><strong>smtpusername<\/strong> is the username you use to login to the SMTP server.<\/li>\n<li><strong>smtppassword<\/strong> is the password you use to login to the SMTP server.<\/li>\n<li><strong>smtpserver<\/strong> is your smtp server hostname.<\/li>\n<li><strong>smtpport<\/strong> is the port which is used to connect to the SMTP server.<\/li>\n<li><strong>smtpssl<\/strong> should be set to True if your SMTP server requires SSL connections.<\/li>\n<\/ul>\n<p>Once you are done editing the file, you can just compile the codes to create the commandline program.<\/p>\n<div class=\"headline\">\n<h2><\/h2>\n<h2>VB.NET codes<\/h2>\n<\/div>\n<div class=\"tab-v2\">\n<div class=\"tab-content\">\n<div id=\"tab_vb\" class=\"tab-pane fade active in\">\n<pre>Imports System\nImports System.Net.Mail\nImports System.IO\n\nModule Module1\n\n    Sub Main()\n        'Edit the below to fit your own paths and configurations\n        Dim emailfile As String = \"C:path_to_this_fileemails.txt\"\n        Dim templatefile As String = \"C:path_to_this_filetemplate.txt\"\n        Dim fromname As String = \"my_name\"\n        Dim fromemail As String = \"my_email_address\"\n        Dim smtpusername As String = \"my_username\"\n        Dim smtppassword As String = \"my_password\"\n        Dim smtpserver As String = \"my_smtp_server\"\n        Dim smtpport As Integer = 25 'modify if your SMTP server uses a different port\n        Dim smtpssl As Boolean = False 'set to True if your SMTP server requires SSL\n\n        'Do not edit anything below this line\n\n        Try\n            'reading the template\n            Dim subject As String = \"\"\n            Dim body As String = \"\"\n            Using reader As StreamReader = New StreamReader(templatefile)\n                ' assume first line is subject\n                subject = reader.ReadLine\n                body = reader.ReadToEnd\n            End Using\n\n            'reading list of email recipients &amp; sending email one by one\n            Dim email As String\n            Using reader As StreamReader = New StreamReader(emailfile)\n                Do While reader.Peek &lt;&gt; -1\n                    email = reader.ReadLine\n                    If email.Trim &lt;&gt; \"\" Then\n                        Using smtp_server As New SmtpClient\n                            smtp_server.UseDefaultCredentials = False\n                            smtp_server.Credentials = New Net.NetworkCredential(smtpusername, smtppassword)\n                            smtp_server.Port = smtpport\n                            smtp_server.EnableSsl = smtpssl\n                            smtp_server.Host = smtpserver\n\n                            Dim mesg = New MailMessage()\n                            mesg.From = New MailAddress(fromemail, fromname)\n                            mesg.To.Add(email)\n                            mesg.Subject = subject\n                            mesg.IsBodyHtml = False\n                            mesg.Body = body\n                            smtp_server.Send(mesg)\n                            Console.WriteLine(\"Mail sent to \" &amp; mesg.To.ToString)\n                        End Using\n                    End If\n                Loop\n            End Using\n        Catch Ex As Exception\n            Console.WriteLine(Ex.ToString)\n        End Try\n    End Sub\n\nEnd Module\n<\/pre>\n<\/div>\n<\/div>\n<\/div>\n<p>Your compiled program should be called <strong>EmailBlaster.exe<\/strong>. To start sending emails, just run the program on the command-line.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Creating a simple email blaster When you perform email marketing, you will be sending out large quantities of emails to [&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-2169","docs","type-docs","status-publish","hentry","doc_category-technical-articles"],"year_month":"2026-04","word_count":646,"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.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to create a simple email blaster using VB.NET -<\/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-create-a-simple-email-blaster-using-vb-net\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to create a simple email blaster using VB.NET -\" \/>\n<meta property=\"og:description\" content=\"Creating a simple email blaster When you perform email marketing, you will be sending out large quantities of emails to [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.mailboxvalidator.com\/resources\/articles\/how-to-create-a-simple-email-blaster-using-vb-net\/\" \/>\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\/2020\/01\/mbv_articles_img23_email_blaster.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=\"3 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-create-a-simple-email-blaster-using-vb-net\\\/\",\"url\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/articles\\\/how-to-create-a-simple-email-blaster-using-vb-net\\\/\",\"name\":\"How to create a simple email blaster using VB.NET -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/articles\\\/how-to-create-a-simple-email-blaster-using-vb-net\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/articles\\\/how-to-create-a-simple-email-blaster-using-vb-net\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/mbv_articles_img23_email_blaster-600x300.jpg\",\"datePublished\":\"2017-08-21T00:00:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/articles\\\/how-to-create-a-simple-email-blaster-using-vb-net\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/articles\\\/how-to-create-a-simple-email-blaster-using-vb-net\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/articles\\\/how-to-create-a-simple-email-blaster-using-vb-net\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/mbv_articles_img23_email_blaster.jpg\",\"contentUrl\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/mbv_articles_img23_email_blaster.jpg\",\"width\":1200,\"height\":600,\"caption\":\"How to create a simple email blaster using VB.NET\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.mailboxvalidator.com\\\/resources\\\/articles\\\/how-to-create-a-simple-email-blaster-using-vb-net\\\/#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 create a simple email blaster using VB.NET\"}]},{\"@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 create a simple email blaster using VB.NET -","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-create-a-simple-email-blaster-using-vb-net\/","og_locale":"en_US","og_type":"article","og_title":"How to create a simple email blaster using VB.NET -","og_description":"Creating a simple email blaster When you perform email marketing, you will be sending out large quantities of emails to [&hellip;]","og_url":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/how-to-create-a-simple-email-blaster-using-vb-net\/","article_publisher":"https:\/\/www.facebook.com\/mailboxvalidator","og_image":[{"width":1200,"height":600,"url":"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2020\/01\/mbv_articles_img23_email_blaster.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_site":"@MailBoxV","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/how-to-create-a-simple-email-blaster-using-vb-net\/","url":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/how-to-create-a-simple-email-blaster-using-vb-net\/","name":"How to create a simple email blaster using VB.NET -","isPartOf":{"@id":"https:\/\/www.mailboxvalidator.com\/resources\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/how-to-create-a-simple-email-blaster-using-vb-net\/#primaryimage"},"image":{"@id":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/how-to-create-a-simple-email-blaster-using-vb-net\/#primaryimage"},"thumbnailUrl":"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2020\/01\/mbv_articles_img23_email_blaster-600x300.jpg","datePublished":"2017-08-21T00:00:00+00:00","breadcrumb":{"@id":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/how-to-create-a-simple-email-blaster-using-vb-net\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.mailboxvalidator.com\/resources\/articles\/how-to-create-a-simple-email-blaster-using-vb-net\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/how-to-create-a-simple-email-blaster-using-vb-net\/#primaryimage","url":"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2020\/01\/mbv_articles_img23_email_blaster.jpg","contentUrl":"https:\/\/www.mailboxvalidator.com\/resources\/wp-content\/uploads\/2020\/01\/mbv_articles_img23_email_blaster.jpg","width":1200,"height":600,"caption":"How to create a simple email blaster using VB.NET"},{"@type":"BreadcrumbList","@id":"https:\/\/www.mailboxvalidator.com\/resources\/articles\/how-to-create-a-simple-email-blaster-using-vb-net\/#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 create a simple email blaster using VB.NET"}]},{"@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\/2169","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=2169"}],"version-history":[{"count":0,"href":"https:\/\/www.mailboxvalidator.com\/resources\/wp-json\/wp\/v2\/docs\/2169\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.mailboxvalidator.com\/resources\/wp-json\/wp\/v2\/media?parent=2169"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/www.mailboxvalidator.com\/resources\/wp-json\/wp\/v2\/doc_category?post=2169"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/www.mailboxvalidator.com\/resources\/wp-json\/wp\/v2\/doc_tag?post=2169"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}