{"id":14676,"date":"2025-12-27T11:33:24","date_gmt":"2025-12-27T06:03:24","guid":{"rendered":"https:\/\/www.youstable.com\/blog\/?p=14676"},"modified":"2025-12-27T11:33:26","modified_gmt":"2025-12-27T06:03:26","slug":"emails-not-sending-receiving","status":"publish","type":"post","link":"https:\/\/www.youstable.com\/blog\/emails-not-sending-receiving","title":{"rendered":"Why Are My Emails Not Sending or Receiving on My Hosting?"},"content":{"rendered":"\n<p><strong>Emails not sending or receiving on your hosting <\/strong>usually trace back to DNS errors (MX\/SPF\/DKIM\/DMARC), incorrect mail client settings (SMTP\/IMAP ports and SSL\/TLS), mailbox quotas, firewalls or port blocks, IP blacklisting, or DNS propagation. Verify records, ports, authentication, quotas, and bounce messages first, then check server logs to restore mail flow.<\/p>\n\n\n\n<p>If you\u2019re asking \u201cwhy are my emails not sending or receiving on my hosting,\u201d you\u2019re not alone. Email delivery depends on multiple moving parts\u2014DNS, authentication, client settings, server limits, and reputation. A single misconfiguration can stall your inbox. This guide gives you a step-by-step, beginner-friendly process to diagnose and fix issues quickly, with insights from real hosting environments.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"quick-diagnosis-is-it-sending-receiving-or-both\"><strong>Quick Diagnosis: Is It Sending, Receiving, or Both?<\/strong><\/h2>\n\n\n\n<p>First, isolate the failure type. This narrows your troubleshooting to the right layer (DNS, SMTP, IMAP, quota, or filtering).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"if-you-can-receive-but-not-send\"><strong>If you can receive but not send<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Likely causes:<\/strong> wrong SMTP port\/SSL, authentication disabled, port 25 blocked, rate limits, or IP blacklisting.<\/li>\n\n\n\n<li><strong>Fix quickly: <\/strong>use SMTP port 587 with STARTTLS (or 465 SSL), enable \u201cSMTP authentication,\u201d and confirm the right username (full email) and password.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"if-you-can-send-but-not-receive\"><strong>If you can send but not receive<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Likely causes: <\/strong>bad MX records, DNS propagation, wrong mailbox\/forwarder, or server-side filters.<\/li>\n\n\n\n<li><strong>Fix quickly: <\/strong>verify MX points to the correct mail host, check \u201cEmail Routing\u201d in your panel, and test via webmail to rule out local client issues.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"if-neither-works\"><strong>If neither works<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Likely causes:<\/strong> domain expired\/suspended, nameservers down, global DNS misconfiguration, or firewall issues.<\/li>\n\n\n\n<li><strong>Fix quickly: <\/strong>confirm domain status, nameservers, DNS records, account status, and port access (25\/465\/587\/993\/995).<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"core-causes-and-fixes\"><strong>Core Causes and Fixes<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"dns-and-mx-records-receiving-depends-on-this\"><strong>DNS and MX Records (Receiving Depends on This)<\/strong><\/h3>\n\n\n\n<p>Your MX (Mail eXchanger) records tell the internet where to deliver mail for your domain. If MX is missing or wrong, emails won\u2019t arrive.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>MX must point to your hosting mail server (e.g., <em>mail.yourdomain.com<\/em> or your provider\u2019s hostname).<\/li>\n\n\n\n<li>MX should be a hostname, not an IP, and that hostname must resolve to an A record.<\/li>\n\n\n\n<li>Only use one email system at a time (hosting or Google\/Microsoft), not both.<\/li>\n\n\n\n<li>In cPanel, set Email Routing to \u201cLocal\u201d if mailboxes live on your server.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>; Example DNS for hosting email\nyourdomain.com.      3600  IN  MX   10 mail.yourdomain.com.\nmail.yourdomain.com. 3600  IN  A    203.0.113.10\n\n; SPF (authorize your sending hosts)\nyourdomain.com.      3600  IN  TXT  \"v=spf1 a mx ip4:203.0.113.10 -all\"<\/code><\/pre>\n\n\n\n<p>After changes, allow up to 4\u201324 hours for DNS propagation worldwide (often faster). Test MX with tools or via <em>nslookup -type=mx yourdomain.com<\/em>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"spf-dkim-and-dmarc-deliverability-and-anti-spoofing\"><strong>SPF, DKIM, and DMARC (Deliverability and Anti-Spoofing)<\/strong><\/h3>\n\n\n\n<p>These records authenticate your emails. Bad or missing records often cause sending failures or spam-foldering.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>SPF authorizes servers allowed to send for your domain.<\/li>\n\n\n\n<li>DKIM cryptographically signs messages to prove they\u2019re genuine.<\/li>\n\n\n\n<li>DMARC sets policy and reporting for alignment of SPF\/DKIM with your domain.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>; SPF (include all legitimate senders)\nyourdomain.com. IN TXT \"v=spf1 a mx ip4:203.0.113.10 include:relay.example.net -all\"\n\n; DKIM (shortened for readability; hosting panel provides full key)\ndefault._domainkey.yourdomain.com. IN TXT \"v=DKIM1; k=rsa; p=MIIBIjANBgkqh...\"\n\n; DMARC (monitor mode)\n_dmarc.yourdomain.com. IN TXT \"v=DMARC1; p=none; rua=mailto:dmarc@yourdomain.com; adkim=s; aspf=s\"<\/code><\/pre>\n\n\n\n<p>Use your <a href=\"https:\/\/www.youstable.com\/blog\/control-panel\/\">control panel\u2019s<\/a> Email Deliverability tool to auto-fix SPF\/DKIM. Set DMARC to \u201cnone\u201d initially to collect reports, then move to \u201cquarantine\u201d or \u201creject\u201d once alignment is stable.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"mail-client-settings-smtp-imap-pop-and-ssl-tls\"><strong>Mail Client Settings (SMTP\/IMAP\/POP and SSL\/TLS)<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Incoming (IMAP):<\/strong> port 993 with SSL\/TLS (preferred) or IMAP 143 with STARTTLS.<\/li>\n\n\n\n<li><strong>Incoming (POP3): <\/strong>port 995 with SSL\/TLS or POP3 110 with STARTTLS.<\/li>\n\n\n\n<li><strong>Outgoing (SMTP): <\/strong>port 587 with STARTTLS (recommended) or 465 with SSL\/TLS.<\/li>\n\n\n\n<li>Always enable \u201cMy outgoing server (SMTP) requires authentication.\u201d<\/li>\n\n\n\n<li>Username is the full email address; password is the mailbox password.<\/li>\n<\/ul>\n\n\n\n<p>Test via webmail first. If webmail works but Outlook\/Apple Mail\/Thunderbird fail, the issue is local client or network firewall.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"mailbox-quota-attachment-size-and-filters\"><strong>Mailbox Quota, Attachment Size, and Filters<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Full mailbox:<\/strong> ask your host to increase quota or delete old mail; empty \u201cTrash\u201d too.<\/li>\n\n\n\n<li><strong>Attachment limits: <\/strong>many hosts cap at 25 MB per message. Use cloud links for larger files.<\/li>\n\n\n\n<li><strong>Filters and spam folders: <\/strong>check server-side filters, user filters, and quarantine.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"spam-filters-blacklists-and-ip-reputation\"><strong>Spam Filters, Blacklists, and IP Reputation<\/strong><\/h2>\n\n\n\n<p>If your server IP is on RBLs (Spamhaus, Barracuda, etc.), mail may bounce or land in spam. Check and remediate.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Look for bounce codes like 550 5.7.1 \u201cblocked\u201d or references to RBLs.<\/li>\n\n\n\n<li>Scan IP\/domain at known blacklist checkers and request delisting after cleanup.<\/li>\n\n\n\n<li>Lock down compromised accounts, rotate passwords, enable 2FA, and send slowly to rebuild reputation.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"port-25-blocks-firewalls-and-rate-limits\"><strong>Port 25 Blocks, Firewalls, and Rate Limits<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>ISPs and many hosts block outbound port 25 to stop spam. Use SMTP 587 with STARTTLS.<\/li>\n\n\n\n<li>Local firewalls must allow ports 465\/587\/993\/995.<\/li>\n\n\n\n<li>Hosts may limit messages per hour to protect IP reputation; check your plan\u2019s limits.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"webmail-vs-third-party-apps-isolate-the-issue\"><strong>Webmail vs Third\u2011Party Apps: Isolate the Issue<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>If webmail works, the server and DNS are fine; fix your device, app settings, or network.<\/li>\n\n\n\n<li>If webmail also fails, investigate server logs, quotas, and authentication issues.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"php-mail-vs-smtp-in-websites-apps\"><strong>PHP mail() vs SMTP in Websites\/Apps<\/strong><\/h2>\n\n\n\n<p>Contact forms and apps often fail when using PHP mail() due to restrictions or authentication failures. Use SMTP with authentication for reliability.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ WordPress tip: use an SMTP plugin and set:\n\/\/ Host: mail.yourdomain.com\n\/\/ Port: 587 (STARTTLS) or 465 (SSL)\n\/\/ Auth: On (full email as username)<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"reading-bounces-and-logs-like-a-pro\"><strong>Reading Bounces and Logs Like a Pro<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"common-smtp-error-codes\"><strong>Common SMTP Error Codes<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>421\/451: <\/strong>Temporary issue (greylisting, server busy). Retry later.<\/li>\n\n\n\n<li><strong>550 5.1.1: <\/strong>Recipient address doesn\u2019t exist.<\/li>\n\n\n\n<li><strong>550 5.7.1: <\/strong>Rejected for policy\/spam; check SPF\/DKIM\/blacklists.<\/li>\n\n\n\n<li><strong>552\/554: <\/strong>Message rejected (size, content, or reputation).<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"where-to-find-logs\"><strong>Where to Find Logs<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Control panels: <\/strong>cPanel\u2019s Track Delivery and Email Deliverability show failures and auth status.<\/li>\n\n\n\n<li><strong>Linux servers (root): <\/strong>Exim or Postfix logs provide detailed SMTP traces.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code># Exim (cPanel\/DirectAdmin typical)\ntail -f \/var\/log\/exim_mainlog\n\n# Postfix (Plesk\/Ubuntu typical)\ntail -f \/var\/log\/mail.log\n\n# Grep by address\ngrep -i \"user@yourdomain.com\" \/var\/log\/exim_mainlog<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"special-cases-that-break-email\"><strong>Special Cases That Break Email<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"new-domain-or-recent-dns-changes\"><strong>New Domain or Recent DNS Changes<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Allow propagation (commonly minutes to a few hours; up to 24\u201348h globally).<\/li>\n\n\n\n<li>Lower TTLs before making changes to speed up future updates.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"expired-domain-or-suspended-hosting\"><strong>Expired Domain or Suspended Hosting<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>If the domain is expired, MX resolution fails\u2014renew it first.<\/li>\n\n\n\n<li>Suspended hosting stops SMTP\/IMAP; resolve billing or abuse tickets promptly.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"email-forwarders-and-loops\"><strong>Email Forwarders and Loops<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A forwarder to a remote provider can trigger SPF\/DMARC failures; use SRS (Sender Rewriting Scheme) if supported.<\/li>\n\n\n\n<li>Avoid chains of forwarders and catch-alls; create explicit mailboxes where possible.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"mailing-lists-newsletters-and-bulk-sends\"><strong>Mailing Lists, Newsletters, and Bulk Sends<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/www.youstable.com\/blog\/host-node-js-on-shared-hosting\/\">Shared hosting<\/a> isn\u2019t built for bulk email. Use a dedicated transactional\/marketing service for scale and deliverability.<\/li>\n\n\n\n<li>Maintain clean lists, confirmed opt-in, and proper list-unsubscribe headers.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"step-by-step-troubleshooting-checklist\"><strong>Step-by-Step Troubleshooting Checklist<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Check domain status, nameservers, and <a href=\"https:\/\/www.youstable.com\/blog\/hosting-account-suspended\/\">hosting account<\/a> status.<\/li>\n\n\n\n<li>Test via webmail; send and receive to external addresses (Gmail\/Outlook).<\/li>\n\n\n\n<li>Verify MX records and Email Routing (Local vs Remote).<\/li>\n\n\n\n<li>Fix SPF\/DKIM\/DMARC using your panel\u2019s deliverability tool.<\/li>\n\n\n\n<li><strong>Confirm SMTP\/IMAP settings:<\/strong> host, ports (587\/465\/993\/995), SSL\/TLS, authentication.<\/li>\n\n\n\n<li>Review mailbox quotas and delete old mail; empty Trash\/Spam.<\/li>\n\n\n\n<li>Read bounce messages for exact error codes and RBL references.<\/li>\n\n\n\n<li>Scan server IP\/domain on RBLs; remediate and request delist.<\/li>\n\n\n\n<li>Disable or adjust aggressive filters; check quarantines.<\/li>\n\n\n\n<li>If using forms\/apps, switch to authenticated SMTP, not PHP mail().<\/li>\n\n\n\n<li>Review server logs (Exim\/Postfix) for connection\/auth\/delivery details.<\/li>\n\n\n\n<li>If still stuck, open a support ticket with timestamps, sender\/recipient, and bounces.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"when-to-use-a-dedicated-email-service\"><strong>When to Use a Dedicated Email Service<\/strong><\/h2>\n\n\n\n<p>Use your hosting email for day\u2011to\u2011day team mail. If you send bulk campaigns, high-volume transactional mail, or need advanced analytics, add a dedicated email platform. This protects your domain reputation, avoids shared-IP limits, and improves inbox placement.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"how-youstable-can-help\"><strong>How YouStable Can Help<\/strong><\/h2>\n\n\n\n<p>On YouStable hosting, SPF\/DKIM are auto-configurable via Email Deliverability, and our cPanel toolset simplifies MX routing, quotas, and tracking delivery. We recommend SMTP 587 with STARTTLS, provide clear per-hour send limits, and help with IP reputation reviews. If your use case needs higher throughput, our team will guide you on integrating a trusted transactional email service while keeping your domain\u2019s authentication aligned.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"faqs\"><strong>FAQs<\/strong><\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1766057020203\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"1-why-are-my-emails-not-sending-from-cpanel\">1. <strong>Why are my emails not sending from cPanel?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Common reasons include wrong SMTP port (use 587 STARTTLS or 465 SSL), authentication disabled, mailbox quota exceeded, or IP blacklisting. Test from webmail, verify SMTP auth and ports, then check bounces for 550\/554 <a href=\"https:\/\/www.youstable.com\/blog\/500-internal-server-error-in-wordpress\/\">errors and server<\/a> logs for authentication failures.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1766057036494\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"2-how-do-i-fix-mx-records-to-receive-email\">2. <strong>How do I fix MX records to receive email?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Set MX to your mail <a href=\"https:\/\/www.youstable.com\/blog\/secure-dedicated-server\/\">server host<\/a> (not an IP), ensure that host has an A record, and configure Email Routing to \u201cLocal\u201d if mailboxes are on your hosting. Remove conflicting MX entries (e.g., Google\/Microsoft) if you\u2019re not using them. Allow time for DNS propagation.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1766057052562\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"3-what-ports-should-i-use-for-smtp-imap-and-pop\">3. <strong>What ports should I use for SMTP, IMAP, and POP?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>SMTP: 587 (STARTTLS) or 465 (SSL). IMAP: 993 (SSL) or 143 (STARTTLS). POP3: 995 (SSL) or 110 (STARTTLS). Always enable SMTP authentication and use the full email address as the username.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1766057063191\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"4-how-long-does-it-take-for-email-dns-changes-to-work\">4. <strong>How long does it take for email DNS changes to work?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Most changes apply within minutes to a few hours, but global propagation can take up to 24\u201348 hours depending on TTL and caching. Lower TTL before changes to accelerate future updates.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1766057073653\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"5-how-can-i-check-if-my-server-ip-is-blacklisted\">5. <strong>How can I check if my server IP is blacklisted?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Use a reputable blacklist checker to scan major RBLs (Spamhaus, Barracuda, Proofpoint, SORBS). If listed, fix the root cause (compromised accounts, poor list hygiene), implement SPF\/DKIM\/DMARC, then request delisting and warm your sending gradually.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Emails not sending or receiving on your hosting usually trace back to DNS errors (MX\/SPF\/DKIM\/DMARC), incorrect mail client settings (SMTP\/IMAP [&hellip;]<\/p>\n","protected":false},"author":21,"featured_media":16287,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"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":""}},"iawp_total_views":16,"footnotes":""},"categories":[350],"tags":[],"class_list":["post-14676","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-knowledgebase"],"acf":[],"featured_image_src":"https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2025\/12\/Why-Are-My-Emails-Not-Sending-or-Receiving-on-My-Hosting.jpg","author_info":{"display_name":"Sanjeet Chauhan","author_link":"https:\/\/www.youstable.com\/blog\/author\/sanjeet"},"_links":{"self":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/14676","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/users\/21"}],"replies":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/comments?post=14676"}],"version-history":[{"count":6,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/14676\/revisions"}],"predecessor-version":[{"id":16289,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/14676\/revisions\/16289"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/media\/16287"}],"wp:attachment":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/media?parent=14676"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/categories?post=14676"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/tags?post=14676"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}