How to Build an AI Email Triage System From Scratch

You can build a working AI email triage system in an afternoon using tools like Zapier, Gmail, and OpenAI — no coding required — and realistically cut the time you spend on email by 60% or more. The catch: you have to set it up right, which means thinking through your categories before you touch a single tool. Here’s the complete, honest walkthrough.

Why Email Triage Is the Right First Automation Project

Most business owners who want to “do something with AI” start with something flashy — a chatbot, a dashboard, an agent. Email is boring. That’s exactly why it’s the right starting point. It’s high-volume, repetitive, and it sits at the center of almost every business workflow: sales leads, support tickets, vendor invoices, partnership inquiries. If you can triage those automatically, you’ve freed up real hours every week, not theoretical ones.

The average knowledge worker spends 28% of their workday on email, according to a McKinsey report that’s been cited so many times it’s almost a cliché — but it’s still true. For a solo consultant or a small team of five, that’s not a statistic. That’s an entire day and a half every week lost to sorting and responding to messages most of which don’t need your personal attention at all.

And unlike a lot of AI projects, this one has a measurable output. Either emails get routed correctly or they don’t. You’ll know within a week whether it’s working.

Step 1: Map Your Email Categories Before You Build Anything

This is the step most people skip, and it’s why their automation breaks in week two. Sit down with a piece of paper — seriously, paper — and go through your last 100 emails. Group them. Most inboxes shake out into five to eight recurring types. For a typical small B2B company, you’ll probably end up with something like:

  • New inbound leads — first contact from a potential customer
  • Existing client requests — questions, status updates, change requests
  • Vendor/invoice emails — invoices, shipping confirmations, renewal notices
  • Spam and cold outreach — sales pitches you didn’t ask for
  • Internal team messages — if your team emails instead of using Slack
  • Urgent escalations — anything flagged as time-sensitive by the sender

Write a one-sentence description of each category. That description becomes your AI prompt later. Don’t skip this step. The AI is only as good as the instructions you give it, and vague instructions produce vague sorting.

Step 2: Choose Your Stack

You’ve got a few real options here, and they’re genuinely different in terms of cost, flexibility, and how much hand-holding you’ll need.

Option A: Zapier + OpenAI (Easiest, Most Expensive)

Zapier is the path of least resistance. You connect Gmail or Outlook, pass the email body to OpenAI’s GPT-4o via Zapier’s OpenAI integration, get a category back as plain text, and use that text to trigger a downstream action — apply a label, move to a folder, send to a Slack channel, create a CRM task. Zapier’s Professional plan runs $49/month and you’ll need OpenAI API access on top of that, which for a typical inbox volume (say, 200 emails/day) will run roughly $8–15/month at current GPT-4o pricing. The limitation: Zapier’s task-based pricing model means if your volume spikes, so does your bill. It also abstracts away enough that debugging a broken workflow can be frustrating — you’re clicking through a UI to figure out why step 7 failed.

Option B: Make.com + OpenAI (More Flexible, Steeper Learning Curve)

Make.com (formerly Integromat) gives you a visual workflow builder that’s more powerful than Zapier for complex logic. You can add conditional branches, error handlers, and iterators that would cost you extra Zap steps in Zapier. The Core plan is $9/month for 10,000 operations — significantly cheaper for high-volume inboxes. The trade-off is the interface isn’t as intuitive and the documentation, while decent, assumes you understand automation concepts. If you’re brand new to this space, the common myths around no-code AI automation are worth reading before you decide which platform fits your actual skill level.

Option C: Zapier + Claude (Best for Nuanced Classification)

Anthropic’s Claude (specifically Claude 3.5 Sonnet) is genuinely better than GPT-4o at following complex classification instructions without hallucinating a category that doesn’t exist. If your email categories have a lot of edge cases — and they will — Claude tends to stay in bounds more reliably. You access it via the Anthropic API, same general price range as OpenAI. The limitation here is that Make.com and Zapier’s native Claude integrations are still catching up; you may need to use an HTTP module to hit the API directly, which adds a small amount of technical setup.

My honest recommendation: start with Zapier + Claude if you want reliability without much debugging. Switch to Make.com once you understand what you’re building and want to reduce costs or add complexity.

Step 3: Write the Classification Prompt

This is where most triage systems fail. People write one-line prompts like “categorize this email” and wonder why the AI picks random categories. You need to be specific. Here’s a prompt structure that actually works:

“You are an email classifier for [Company Name]. Read the email below and assign it to exactly one of these categories: [list your categories]. Return only the category name, nothing else. If you are unsure, default to ‘Needs Human Review’. Here are the category definitions: [paste your one-sentence descriptions from Step 1].”

That last sentence — “return only the category name, nothing else” — matters enormously. Without it, the AI will explain its reasoning, add caveats, and you’ll have to parse its response in the next step. Keep the output clean. If you want to get better at writing prompts like this more broadly, the fundamentals in this beginner’s guide to prompt engineering will save you a lot of trial and error.

Step 4: Set Up the Workflow

Here’s the exact sequence in Zapier (Make.com is structurally identical, different UI):

  • Trigger: New email in Gmail (or Outlook). Filter to only emails in your inbox, not sent or draft.
  • Step 2: OpenAI or Claude action — “Send prompt.” Pass the subject line and email body as variables. Use your classification prompt from Step 3.
  • Step 3: Add a Filter or Paths step. Branch based on the category text returned by the AI. You’ll have one branch per category.
  • Step 4 (per branch): Execute the action for that category. For “New inbound lead,” that might be: apply a Gmail label, create a contact in HubSpot, post a Slack notification to your sales channel. For “Vendor invoice,” maybe just label and archive. For “Spam,” move to trash.

Test this on 20 real emails before you turn it on for live traffic. Pull 20 old emails from your inbox, run them through manually as test triggers, and check every single classification. You will find at least two or three the AI gets wrong — that’s normal. Revise the prompt. Re-test. Don’t go live until your accuracy is above 90% on your test set.

Step 5: Add AI Draft Replies for High-Priority Categories

Once classification is working cleanly, add one more layer to your highest-value category — probably “New inbound leads” or “Existing client requests.” After classification, pass the email to the AI again with a different prompt: draft a reply. Give it your tone, your standard info, any policies it should include. The draft lands in your Gmail Drafts folder. You review, edit if needed, and send. You’re not removing yourself from the loop — you’re removing the blank-page problem and the first 10 minutes of composing.

This is also where understanding the actual limits of AI helps you set realistic expectations. AI doesn’t know your client’s history, the backstory of an ongoing negotiation, or the subtext in a passive-aggressive vendor email. It’ll draft something competent and generic. Your job is the 30-second polish, not the 10-minute compose. For a realistic view of what AI actually replaces versus what it doesn’t, the real story on AI and human work is worth a read before you over-automate.

Step 6: Monitor and Refine for 30 Days

Set a recurring 15-minute block every Friday to review misclassified emails. Gmail labels make this easy — add a “Misclassified” label and train yourself or your team to tag anything the system got wrong. After two weeks, you’ll see patterns. Usually it’s one or two edge-case email types that you didn’t define precisely enough in Step 1. Go back, update the category descriptions, update the prompt, redeploy. Most triage systems stabilize after three to four rounds of iteration.

Don’t expect perfection at launch. Expect a working system that gets meaningfully better over 30 days.

FAQ

Do I need to know how to code to build this?

No. Zapier and Make.com are genuinely no-code tools and both have Gmail and OpenAI integrations built in. The only thing close to “technical” is constructing the API prompt correctly, which is more about writing clearly than coding. If you can write a detailed email, you can write a classification prompt.

Is it safe to send email content to OpenAI or Claude?

That depends on what’s in your emails. Both OpenAI and Anthropic offer API terms that say they don’t train on API data by default — but review their current data policies before sending anything that includes client PII, financial data, or anything covered by an NDA. For sensitive industries like healthcare or legal, you’ll want to filter out protected content before it hits the API, or look at on-premise LLM options instead.

How long does the full setup take?

Realistically, four to six hours for a first-time build — one hour for Step 1 (the categorization mapping), two hours for the Zapier or Make.com workflow, and one to two hours for testing and prompt refinement. Don’t try to do it all in one sitting. Build the trigger and classification in one session, then add the downstream actions in a second session once you’ve confirmed the AI output is clean.

<<>><br /> How to Build an AI Email Triage System From Scratch<br /> <<<SLUG>>><br /> build-ai-email-triage-system<br /> <<<EXCERPT>>><br /> Stop drowning in your inbox. Here’s exactly how to build an AI email triage system that sorts, prioritizes, and drafts replies automatically.<!-- ai-disclosure --></p> <hr> <p style='font-size:0.85em;color:#9aa3b2;font-style:italic;margin-top:1.5em'><em>This article was produced with the assistance of AI, and its featured image was AI-generated. We review for accuracy, but please verify critical details.</em></p> <p><script type="application/ld+json">{"@context":"https://schema.org","@type":"FAQPage","mainEntity":[{"@type":"Question","name":"Do I need to know how to code to build this?","acceptedAnswer":{"@type":"Answer","text":"No. Zapier and Make.com are genuinely no-code tools and both have Gmail and OpenAI integrations built in. The only thing close to \"technical\" is constructing the API prompt correctly, which is more about writing clearly than coding. If you can write a detailed email, you can write a classification prompt."}},{"@type":"Question","name":"Is it safe to send email content to OpenAI or Claude?","acceptedAnswer":{"@type":"Answer","text":"That depends on what's in your emails. Both OpenAI and Anthropic offer API terms that say they don't train on API data by default — but review their current data policies before sending anything that includes client PII, financial data, or anything covered by an NDA. For sensitive industries like healthcare or legal, you'll want to filter out protected content before it hits the API, or look at on-premise LLM options instead."}},{"@type":"Question","name":"How long does the full setup take?","acceptedAnswer":{"@type":"Answer","text":"Realistically, four to six hours for a first-time build — one hour for Step 1 (the categorization mapping), two hours for the Zapier or Make.com workflow, and one to two hours for testing and prompt refinement. Don't try to do it all in one sitting. Build the trigger and classification in one session, then add the downstream actions in a second session once you've confirmed the AI output is clean. >> How to Build an AI Email Triage System From Scratch >> build-ai-email-triage-system >> Stop drowning in your inbox. Here's exactly how to build an AI email triage system that sorts, prioritizes, and drafts replies automatically. This article was produced with the assistance of AI, and its featured image was AI-generated. We review for accuracy, but please verify critical details."}}]}</script></p> </div><!-- .entry-content .clear --> </div> </article><!-- #post-## --> <nav class="navigation post-navigation" aria-label="Posts"> <div class="nav-links"><div class="nav-previous"><a title="The Dirty Truth About AI Chatbots for Small Business" href="https://iadigest.com/ai-chatbots-small-business-myths/" rel="prev"><span class="ast-left-arrow" aria-hidden="true">←</span> Previous Post</a></div><div class="nav-next"><a title="Connect Slack to Your CRM With Zapier: A Real Setup Guide" href="https://iadigest.com/slack-crm-zapier-automation-setup/" rel="next">Next Post <span class="ast-right-arrow" aria-hidden="true">→</span></a></div></div> </nav><div class="ast-single-related-posts-container ast-container--fallback"><div class="ast-related-posts-title-section"> <h2 class="ast-related-posts-title"> Related Posts </h2> </div><div class="ast-related-posts-wrapper"> <article class="ast-related-post post-2179 post type-post status-publish format-standard has-post-thumbnail hentry category-ai-automation"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section post-has-thumb"><div class="post-thumb-img-content post-thumb"><a aria-label="Read more about How to Automate Your Business With AI Agents in 2025 (Without Writing Code)" href="https://iadigest.com/automate-business-ai-agents-2025/"><img width="1024" height="576" src="https://iadigest.com/wp-content/uploads/2026/07/cover-automate-business-ai-agents-2025-1024x576.jpg" class="attachment-large size-large wp-post-image" alt="How to Automate Your Business With AI Agents in 2025 (Without Writing Code)" itemprop="" decoding="async" srcset="https://iadigest.com/wp-content/uploads/2026/07/cover-automate-business-ai-agents-2025-1024x576.jpg 1024w, https://iadigest.com/wp-content/uploads/2026/07/cover-automate-business-ai-agents-2025-300x169.jpg 300w, https://iadigest.com/wp-content/uploads/2026/07/cover-automate-business-ai-agents-2025-768x432.jpg 768w, https://iadigest.com/wp-content/uploads/2026/07/cover-automate-business-ai-agents-2025.jpg 1536w" sizes="(max-width: 1024px) 100vw, 1024px" /></a> </div></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://iadigest.com/automate-business-ai-agents-2025/" target="_self" rel="bookmark noopener noreferrer">How to Automate Your Business With AI Agents in 2025 (Without Writing Code)</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> <article class="ast-related-post post-2180 post type-post status-publish format-standard has-post-thumbnail hentry category-ai-automation"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section post-has-thumb"><div class="post-thumb-img-content post-thumb"><a aria-label="Read more about Claude vs ChatGPT for Business Automation: Which One Actually Wins?" href="https://iadigest.com/claude-vs-chatgpt-business-automation/"><img width="1024" height="576" src="https://iadigest.com/wp-content/uploads/2026/07/cover-claude-vs-chatgpt-business-automation-1024x576.jpg" class="attachment-large size-large wp-post-image" alt="Claude vs ChatGPT for Business Automation: Which One Actually Wins?" itemprop="" decoding="async" loading="lazy" srcset="https://iadigest.com/wp-content/uploads/2026/07/cover-claude-vs-chatgpt-business-automation-1024x576.jpg 1024w, https://iadigest.com/wp-content/uploads/2026/07/cover-claude-vs-chatgpt-business-automation-300x169.jpg 300w, https://iadigest.com/wp-content/uploads/2026/07/cover-claude-vs-chatgpt-business-automation-768x432.jpg 768w, https://iadigest.com/wp-content/uploads/2026/07/cover-claude-vs-chatgpt-business-automation.jpg 1536w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a> </div></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://iadigest.com/claude-vs-chatgpt-business-automation/" target="_self" rel="bookmark noopener noreferrer">Claude vs ChatGPT for Business Automation: Which One Actually Wins?</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"></div> </header> <div class="entry-content clear"> </div> </div> </div> </article> </div> </div> <div id="comments" class="comments-area comment-form-position-below "> <div id="respond" class="comment-respond"> <h3 id="reply-title" class="comment-reply-title">Leave a Comment <small><a rel="nofollow" id="cancel-comment-reply-link" href="/build-ai-email-triage-system/#respond" style="display:none;">Cancel Reply</a></small></h3><form action="https://iadigest.com/wp-comments-post.php" method="post" id="ast-commentform" class="comment-form"><p class="comment-notes"><span id="email-notes">Your email address will not be published.</span> <span class="required-field-message">Required fields are marked <span class="required">*</span></span></p><div class="ast-row comment-textarea"><fieldset class="comment-form-comment"><legend class ="comment-form-legend"></legend><div class="comment-form-textarea ast-grid-common-col"><label for="comment" class="screen-reader-text">Type here..</label><textarea id="comment" name="comment" placeholder="Type here.." cols="45" rows="8" aria-required="true"></textarea></div></fieldset></div><div class="ast-comment-formwrap ast-row"> <p class="comment-form-author ast-grid-common-col ast-width-lg-33 ast-width-md-4 ast-float"> <label for="author" class="screen-reader-text">Name*</label> <input id="author" name="author" type="text" value="" placeholder="Name*" size="30" aria-required='true' autocomplete="name" /> </p> <p class="comment-form-email ast-grid-common-col ast-width-lg-33 ast-width-md-4 ast-float"> <label for="email" class="screen-reader-text">Email*</label> <input id="email" name="email" type="text" value="" placeholder="Email*" size="30" aria-required='true' autocomplete="email" /> </p> <p class="comment-form-url ast-grid-common-col ast-width-lg-33 ast-width-md-4 ast-float"> <label for="url" class="screen-reader-text">Website</label> <input id="url" name="url" type="text" value="" placeholder="Website" size="30" autocomplete="url" /> </p> </div> <p class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes" /> <label for="wp-comment-cookies-consent">Save my name, email, and website in this browser for the next time I comment.</label></p> <p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="Post Comment »" /> <input type='hidden' name='comment_post_ID' value='2613' id='comment_post_ID' /> <input type='hidden' name='comment_parent' id='comment_parent' value='0' /> </p></form> </div><!-- #respond --> </div><!-- #comments --> </main><!-- #main --> </div><!-- #primary --> </div> <!-- ast-container --> </div><!-- #content --> <div id="ast-mobile-popup-wrapper"> <div id="ast-mobile-popup" class="ast-mobile-popup-drawer content-align-flex-start ast-mobile-popup-right"> <div class="ast-mobile-popup-overlay"></div> <div class="ast-mobile-popup-inner"> <div class="ast-mobile-popup-header"> <button type="button" id="menu-toggle-close" class="menu-toggle-close" aria-label="Close menu" tabindex="0"> <span class="ast-svg-iconset"> <span aria-hidden="true" class="ahfb-svg-iconset ast-inline-flex svg-baseline"><svg class='ast-mobile-svg ast-close-svg' fill='currentColor' version='1.1' xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><path d='M5.293 6.707l5.293 5.293-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-5.293-5.293 5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z'></path></svg></span> </span> </button> </div> <div class="ast-mobile-popup-content"> <div class="ast-builder-menu-mobile ast-builder-menu ast-builder-menu-mobile-focus-item ast-builder-layout-element site-header-focus-item" data-section="section-header-mobile-menu"> <div class="ast-main-header-bar-alignment"><div class="main-header-bar-navigation"><nav class="site-navigation ast-flex-grow-1 navigation-accessibility site-header-focus-item" id="ast-mobile-site-navigation" aria-label="Site Navigation: Menu" itemtype="https://schema.org/SiteNavigationElement" itemscope="itemscope"><div class="main-navigation"><ul id="ast-hf-mobile-menu" class="main-header-menu ast-nav-menu ast-flex submenu-with-border astra-menu-animation-fade stack-on-mobile"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-2188"><a href="https://iadigest.com/" class="menu-link">Home</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2189"><a href="https://iadigest.com/blog/" class="menu-link">Blog</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1625"><a href="https://iadigest.com/about/" class="menu-link">About</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1624"><a href="https://iadigest.com/contact/" class="menu-link">Contact</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2406"><a href="https://iadigest.com/toolbox/" class="menu-link">Toolbox</a></li> </ul></div></nav></div></div> </div> <div class="ast-builder-layout-element ast-flex site-header-focus-item ast-header-button-1" data-section="section-hb-button-1"> <div class="ast-builder-button-wrap ast-builder-button-size-"><a class="ast-custom-button-link" href="#" target="_self" role="button" aria-label="Subscribe" > <div class="ast-custom-button">Subscribe</div> </a><a class="menu-link" href="#" target="_self" >Subscribe</a></div> </div> </div> <div class="ast-desktop-popup-content"> </div> </div> </div> </div> <footer class="site-footer" id="colophon" itemtype="https://schema.org/WPFooter" itemscope="itemscope" itemid="#colophon"> <div class="site-above-footer-wrap ast-builder-grid-row-container site-footer-focus-item ast-builder-grid-row-2-lheavy ast-builder-grid-row-tablet-full ast-builder-grid-row-mobile-full ast-footer-row-stack ast-footer-row-tablet-stack ast-footer-row-mobile-stack" data-section="section-above-footer-builder"> <div class="ast-builder-grid-row-container-inner"> <div class="ast-builder-footer-grid-columns site-above-footer-inner-wrap ast-builder-grid-row"> <div class="site-footer-above-section-1 site-footer-section site-footer-section-1"> <div class="footer-widget-area widget-area site-footer-focus-item" data-section="section-footer-menu"> <div class="footer-bar-navigation"><nav class="site-navigation ast-flex-grow-1 navigation-accessibility footer-navigation" id="footer-site-navigation" aria-label="Site Navigation: Footer Legal" itemtype="https://schema.org/SiteNavigationElement" itemscope="itemscope"><div class="footer-nav-wrap"><ul id="astra-footer-menu" class="ast-nav-menu ast-flex astra-footer-horizontal-menu astra-footer-tablet-horizontal-menu astra-footer-mobile-vertical-menu"><li id="menu-item-2194" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2194"><a href="https://iadigest.com/about/" class="menu-link">About</a></li> <li id="menu-item-2195" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2195"><a href="https://iadigest.com/contact/" class="menu-link">Contact</a></li> <li id="menu-item-2196" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2196"><a href="https://iadigest.com/privacy-policy/" class="menu-link">Privacy Policy</a></li> <li id="menu-item-2197" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2197"><a href="https://iadigest.com/terms/" class="menu-link">Terms of Use</a></li> </ul></div></nav></div> </div> </div> <div class="site-footer-above-section-2 site-footer-section site-footer-section-2"> <div class="ast-builder-layout-element ast-flex site-footer-focus-item" data-section="section-fb-social-icons-1"> <div class="ast-footer-social-1-wrap ast-footer-social-wrap"><div class="footer-social-inner-wrap element-social-inner-wrap social-show-label-false ast-social-color-type-custom ast-social-stack-none ast-social-element-style-filled"><a href="#" aria-label="Twitter" target="_blank" rel="noopener noreferrer" style="--color: #7acdee; --background-color: transparent;" class="ast-builder-social-element ast-inline-flex ast-twitter footer-social-item"><span aria-hidden="true" class="ahfb-svg-iconset ast-inline-flex svg-baseline"><svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path d='M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z'></path></svg></span></a><a href="#" aria-label="Linkedin" target="_blank" rel="noopener noreferrer" style="--color: #1c86c6; --background-color: transparent;" class="ast-builder-social-element ast-inline-flex ast-linkedin footer-social-item"><span aria-hidden="true" class="ahfb-svg-iconset ast-inline-flex svg-baseline"><svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'><path d='M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z'></path></svg></span></a><a href="#" aria-label="Instagram" target="_blank" rel="noopener noreferrer" style="--color: #8a3ab9; --background-color: transparent;" class="ast-builder-social-element ast-inline-flex ast-instagram footer-social-item"><span aria-hidden="true" class="ahfb-svg-iconset ast-inline-flex svg-baseline"><svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'><path d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z'></path></svg></span></a><a href="#" aria-label="Facebook" target="_blank" rel="noopener noreferrer" style="--color: #557dbc; --background-color: transparent;" class="ast-builder-social-element ast-inline-flex ast-facebook footer-social-item"><span aria-hidden="true" class="ahfb-svg-iconset ast-inline-flex svg-baseline"><svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'><path d='M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z'></path></svg></span></a><a href="#" aria-label="YouTube" target="_blank" rel="noopener noreferrer" style="--color: #e96651; --background-color: transparent;" class="ast-builder-social-element ast-inline-flex ast-youtube footer-social-item"><span aria-hidden="true" class="ahfb-svg-iconset ast-inline-flex svg-baseline"><svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'><path d='M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z'></path></svg></span></a></div></div> </div> </div> </div> </div> </div> <div class="site-primary-footer-wrap ast-builder-grid-row-container site-footer-focus-item ast-builder-grid-row-full ast-builder-grid-row-tablet-full ast-builder-grid-row-mobile-full ast-footer-row-stack ast-footer-row-tablet-stack ast-footer-row-mobile-stack" data-section="section-primary-footer-builder"> <div class="ast-builder-grid-row-container-inner"> <div class="ast-builder-footer-grid-columns site-primary-footer-inner-wrap ast-builder-grid-row"> <div class="site-footer-primary-section-1 site-footer-section site-footer-section-1"> <div class="footer-widget-area widget-area site-footer-focus-item ast-footer-html-1" data-section="section-fb-html-1"> <div class="ast-header-html inner-link-style-"><div class="ast-builder-html-element"><h4>Sign up to receive email updates, fresh news and more!</h4> </div></div> </div> <aside class="footer-widget-area widget-area site-footer-focus-item footer-widget-area-inner" data-section="sidebar-widgets-footer-widget-2" aria-label="Footer Widget 2" role="region" > <section id="block-13" class="widget widget_block"><p> <div class="srfm-form-container srfm-form-container-2157 srfm-bg-color srfm-submit-button-hidden"> <style> /* Need to check and remove the input variables related to the Style Tab. */ .srfm-form-container-2157 { /* New test variables */ --srfm-color-scheme-primary: var(--ast-global-color-0); --srfm-color-scheme-text-on-primary: #FFFFFF; --srfm-color-scheme-text: var(--ast-global-color-2); --srfm-quill-editor-color: var(--ast-global-color-0); --srfm-color-input-label: var(--ast-global-color-2); --srfm-color-input-description: hsl( from var(--ast-global-color-2) h s l / 0.65 ); --srfm-color-input-placeholder: hsl( from var(--ast-global-color-2) h s l / 0.5 ); --srfm-color-input-text: var(--ast-global-color-2); --srfm-color-input-prefix: hsl( from var(--ast-global-color-2) h s l / 0.65 ); --srfm-color-input-background: hsl( from var(--ast-global-color-2) h s l / 0.02 ); --srfm-color-input-background-hover: hsl( from var(--ast-global-color-2) h s l / 0.05 ); --srfm-color-input-background-disabled: hsl( from var(--ast-global-color-2) h s l / 0.07 ); --srfm-color-input-border: hsl( from var(--ast-global-color-2) h s l / 0.25 ); --srfm-color-input-border-disabled: hsl( from var(--ast-global-color-2) h s l / 0.15 ); --srfm-color-multi-choice-svg: hsl( from var(--ast-global-color-2) h s l / 0.7 ); --srfm-color-input-border-hover: hsl( from var(--ast-global-color-0) h s l / 0.65 ); --srfm-color-input-border-focus-glow: hsl( from var(--ast-global-color-0) h s l / 0.15 ); --srfm-color-input-selected: hsl( from var(--ast-global-color-0) h s l / 0.1 ); --srfm-btn-color-hover: hsl( from var(--ast-global-color-0) h s l / 0.9 ); --srfm-btn-color-disabled: hsl( from var(--ast-global-color-0) h s l / 0.25 ); /* Dropdown Variables */ --srfm-dropdown-input-background-hover: hsl( from var(--ast-global-color-2) h s l / 0.05 ); --srfm-dropdown-option-background-hover: hsl( from var(--ast-global-color-2) h s l / 0.10 ); --srfm-dropdown-option-background-selected: hsl( from var(--ast-global-color-2) h s l / 0.05 ); --srfm-dropdown-option-selected-icon: hsl( from var(--ast-global-color-2) h s l / 0.65 ); --srfm-dropdown-option-text-color: hsl( from var(--ast-global-color-2) h s l / 0.80 ); --srfm-dropdown-option-selected-text: var(--ast-global-color-2); --srfm-dropdown-badge-background: hsl( from var(--ast-global-color-2) h s l / 0.05 ); --srfm-dropdown-badge-background-hover: hsl( from var(--ast-global-color-2) h s l / 0.10 ); --srfm-dropdown-menu-border-color: hsl( from var(--ast-global-color-2) h s l / 0.10 ); --srfm-dropdown-placeholder-color: hsl( from var(--ast-global-color-2) h s l / 0.50 ); --srfm-dropdown-icon-color: hsl( from var(--ast-global-color-2) h s l / 0.65 ); --srfm-dropdown-icon-disabled: hsl( from var(--ast-global-color-2) h s l / 0.25 ); /* Background Control Variables */ --srfm-instant-form-padding-top: 32px;--srfm-instant-form-padding-right: 32px;--srfm-instant-form-padding-bottom: 32px;--srfm-instant-form-padding-left: 32px;--srfm-instant-form-border-radius-top: 12px;--srfm-instant-form-border-radius-right: 12px;--srfm-instant-form-border-radius-bottom: 12px;--srfm-instant-form-border-radius-left: 12px;--srfm-form-padding-top: 0px;--srfm-form-padding-right: 0px;--srfm-form-padding-bottom: 0px;--srfm-form-padding-left: 0px;--srfm-form-border-radius-top: 0px;--srfm-form-border-radius-right: 0px;--srfm-form-border-radius-bottom: 0px;--srfm-form-border-radius-left: 0px;--srfm-bg-overlay-opacity: 1; --srfm-row-gap-between-blocks: 18px;--srfm-address-label-font-size: 16px;--srfm-address-label-line-height: 24px;--srfm-address-description-font-size: 14px;--srfm-address-description-line-height: 20px;--srfm-col-gap-between-fields: 16px;--srfm-row-gap-between-fields: 16px;--srfm-gap-below-address-label: 14px;--srfm-dropdown-font-size: 14px;--srfm-dropdown-gap-between-input-menu: 4px;--srfm-dropdown-badge-padding: 2px 6px;--srfm-dropdown-multiselect-font-size: 12px;--srfm-dropdown-multiselect-line-height: 16px;--srfm-dropdown-padding-right: 12px;--srfm-dropdown-padding-right-icon: calc( var( --srfm-dropdown-padding-right ) + 20px );--srfm-dropdown-multiselect-padding: 8px var( --srfm-dropdown-padding-right-icon ) 8px 8px;--srfm-input-height: 44px;--srfm-input-field-padding: 10px 12px;--srfm-input-field-font-size: 16px;--srfm-input-field-line-height: 24px;--srfm-input-field-margin-top: 6px;--srfm-input-field-margin-bottom: 6px;--srfm-checkbox-label-font-size: 16px;--srfm-checkbox-label-line-height: 24px;--srfm-checkbox-description-font-size: 14px;--srfm-checkbox-description-line-height: 20px;--srfm-check-ctn-width: 16px;--srfm-check-ctn-height: 16px;--srfm-check-svg-size: 10px;--srfm-checkbox-margin-top-frontend: 4px;--srfm-checkbox-margin-top-editor: 6px;--srfm-check-gap: 8px;--srfm-checkbox-description-margin-left: 24px;--srfm-flag-section-padding: 10px 0 10px 12px;--srfm-gap-between-icon-text: 8px;--srfm-label-font-size: 16px;--srfm-label-line-height: 24px;--srfm-description-font-size: 14px;--srfm-description-line-height: 20px;--srfm-btn-padding: 10px 14px;--srfm-btn-font-size: 16px;--srfm-btn-line-height: 24px;--srfm-multi-choice-horizontal-padding: 20px;--srfm-multi-choice-vertical-padding: 20px;--srfm-multi-choice-internal-option-gap: 8px;--srfm-multi-choice-vertical-svg-size: 40px;--srfm-multi-choice-horizontal-image-size: 24px;--srfm-multi-choice-vertical-image-size: 120px;--srfm-multi-choice-outer-padding: 2px; } </style> <form method="post" enctype="multipart/form-data" id="srfm-form-2157" class="srfm-form " form-id="2157" after-submission="hide form" message-type="same page" success-url="" ajaxurl="https://iadigest.com/wp-admin/admin-ajax.php" data-submit-token="334c1ce5991f4328505c4d776be4cb8b09c0d581004d81b9c7f77e0a9463ba2a" > <input type="hidden" value="2157" name="form-id"> <input type="hidden" value="" name="srfm-form-language"> <input type="hidden" value="" name="srfm-sender-email-field" id="srfm-sender-email"> <input type="hidden" value="" id="srfm-page-break"> <p id="srfm-error-message" class="srfm-common-error-message srfm-error-message srfm-head-error" hidden> <span class="srfm-icon" aria-hidden="true"> <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none"><path d="M9.99935 18.3327C14.6017 18.3327 18.3327 14.6017 18.3327 9.99935C18.3327 5.39698 14.6017 1.66602 9.99935 1.66602C5.39698 1.66602 1.66602 5.39698 1.66602 9.99935C1.66602 14.6017 5.39698 18.3327 9.99935 18.3327Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /><path d="M10 6.66602V9.99935" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /><path d="M10 13.334H10.0083" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /></svg> </span> <span class="srfm-error-content">There was an error trying to submit your form. Please try again.</span></p> <div data-block-id="10bb0e3a" class="srfm-block-single srfm-block srfm-input-block srf-input-10bb0e3a-block srfm-block-width-75 srfm-slug-email-address 2157" > <div class="srfm-block-wrap"> <input class="srfm-input-common srfm-input-input" type="text" name="srfm-input-10bb0e3a-lbl-RW1haWwgQWRkcmVzcw-email-address" id="srfm-input-10bb0e3a-lbl-RW1haWwgQWRkcmVzcw" aria-describedby='srfm-error-10bb0e3a' data-required="false" aria-required="false" data-unique="false" maxlength="100" value="" placeholder="Email Address" data-srfm-mask="none" /> </div> <div class="srfm-error-wrap"> <div class="srfm-error-message" data-srfm-id="srfm-error-10bb0e3a" data-error-msg="This field is required." data-unique-msg="Value needs to be unique."> This field is required. </div> </div> </div> <div data-block-id="ff97e3e0" class=" 2157 srf-inline-button-ff97e3e0-block srfm-block-width-25 srfm-block srfm-custom-button-ctn "> <button style=" font-family: inherit; font-weight: var(--wp--custom--font-weight--medium); line-height: normal;width:100%;" id="srfm-submit-btn" class="srfm-button srfm-submit-button srfm-btn-frontend srfm-custom-button" > <div class="srfm-submit-wrap"> SUBSCRIBE <div class="srfm-loader"></div> </div> </button> <div class="srfm-error-wrap"></div> </div> <div class="srfm-submit-container " style="visibility:hidden;position:absolute;"> <div style="width: ; text-align: left" class="wp-block-button"> </div> </div> <p id="srfm-error-message" class="srfm-common-error-message srfm-error-message srfm-footer-error" hidden> <span class="srfm-icon" aria-hidden="true"> <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none"><path d="M9.99935 18.3327C14.6017 18.3327 18.3327 14.6017 18.3327 9.99935C18.3327 5.39698 14.6017 1.66602 9.99935 1.66602C5.39698 1.66602 1.66602 5.39698 1.66602 9.99935C1.66602 14.6017 5.39698 18.3327 9.99935 18.3327Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /><path d="M10 6.66602V9.99935" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /><path d="M10 13.334H10.0083" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /></svg> </span> <span class="srfm-error-content">There was an error trying to submit your form. Please try again.</span></p> </form> <div class="srfm-single-form srfm-success-box in-page"> <div aria-live="polite" aria-atomic="true" role="alert" id="srfm-success-message-page-2157" class="srfm-success-box-description"></div> </div> </div> </p> </section><section id="block-7" class="widget widget_block"><p>This form has been deleted or is unavailable.</p> </section><section id="custom_html-2" class="widget_text widget widget_custom_html"><div class="textwidget custom-html-widget"><div class="gtranslate_wrapper"></div><script>window.gtranslateSettings={"default_language":"en","languages":["en","es","fr","de","it","pt","nl"],"wrapper_selector":".gtranslate_wrapper","switcher_horizontal_position":"right","switcher_vertical_position":"top","float_switcher_open_direction":"bottom","flag_style":"3d"};</script><script src="https://cdn.gtranslate.net/widgets/latest/float.js" defer></script><script>document.addEventListener("DOMContentLoaded",function(){document.querySelectorAll("header a[href='#'], .ast-header-button-1 a, a.ast-custom-button-link").forEach(function(a){a.setAttribute("href","https://iadigest.com/#newsletter")});});</script></div></section> </aside> </div> </div> </div> </div> <div class="site-below-footer-wrap ast-builder-grid-row-container site-footer-focus-item ast-builder-grid-row-full ast-builder-grid-row-tablet-full ast-builder-grid-row-mobile-full ast-footer-row-stack ast-footer-row-tablet-stack ast-footer-row-mobile-stack" data-section="section-below-footer-builder"> <div class="ast-builder-grid-row-container-inner"> <div class="ast-builder-footer-grid-columns site-below-footer-inner-wrap ast-builder-grid-row"> <div class="site-footer-below-section-1 site-footer-section site-footer-section-1"> <div class="ast-builder-layout-element ast-flex site-footer-focus-item ast-footer-copyright" data-section="section-footer-builder"> <div class="ast-footer-copyright"><p>Copyright © 2026 IAdigest | Powered by IAdigest</p> </div> </div> </div> </div> </div> </div> </footer><!-- #colophon --> </div><!-- #page --> <script type="speculationrules"> {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/astra/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} </script> <script> /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1); </script> <script async data-wp-strategy="async" fetchpriority="low" id="comment-reply-js" src="https://iadigest.com/wp-includes/js/comment-reply.min.js?ver=7.0.2"></script> <script id="astra-theme-js-js-extra"> var astra = {"break_point":"921","isRtl":"","is_scroll_to_id":"","is_scroll_to_top":"","is_header_footer_builder_active":"1","responsive_cart_click":"flyout","is_dark_palette":""}; //# sourceURL=astra-theme-js-js-extra </script> <script id="astra-theme-js-js" src="https://iadigest.com/wp-content/themes/astra/assets/js/minified/frontend.min.js?ver=4.13.4"></script> <script id="wp-dom-ready-js" src="https://iadigest.com/wp-includes/js/dist/dom-ready.min.js?ver=a06281ae5cf5500e9317"></script> <script id="starter-templates-zip-preview-js-extra"> var starter_templates_zip_preview = {"AstColorPaletteVarPrefix":"--ast-global-color-","AstEleColorPaletteVarPrefix":["ast-global-color-0","ast-global-color-1","ast-global-color-2","ast-global-color-3","ast-global-color-4","ast-global-color-5","ast-global-color-6","ast-global-color-7","ast-global-color-8"]}; //# sourceURL=starter-templates-zip-preview-js-extra </script> <script id="starter-templates-zip-preview-js" src="https://iadigest.com/wp-content/plugins/astra-sites/inc/lib/onboarding/assets/dist/template-preview/main.js?ver=09382f635556bec359b3"></script> <script id="hostinger-reach-subscription-block-view-js-extra"> var hostinger_reach_subscription_block_data = {"endpoint":"https://iadigest.com/wp-json/hostinger-reach/v1/contact","nonce":"3d9a281b42","translations":{"thanks":"Thanks for subscribing.","error":"Something went wrong. Please try again."}}; //# sourceURL=hostinger-reach-subscription-block-view-js-extra </script> <script id="hostinger-reach-subscription-block-view-js" src="https://iadigest.com/wp-content/plugins/hostinger-reach/frontend/dist/blocks/subscription-view.js?ver=1781194075"></script> <script id="iadigest-blog-js" src="https://iadigest.com/wp-content/plugins/iadigest-blog-style/js/blog.js?ver=1783931173"></script> <script id="srfm-input-js" src="https://iadigest.com/wp-content/plugins/sureforms/assets/js/minified/blocks/input.min.js?ver=2.11.0"></script> <script id="wp-hooks-js" src="https://iadigest.com/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d"></script> <script id="wp-i18n-js" src="https://iadigest.com/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec"></script> <script id="wp-i18n-js-after"> wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); //# sourceURL=wp-i18n-js-after </script> <script id="wp-url-js" src="https://iadigest.com/wp-includes/js/dist/url.min.js?ver=bb0f766c3d2efe497871"></script> <script id="wp-api-fetch-js" src="https://iadigest.com/wp-includes/js/dist/api-fetch.min.js?ver=d7efe4dc1468d36c39b8"></script> <script id="wp-api-fetch-js-after"> wp.apiFetch.use( wp.apiFetch.createRootURLMiddleware( "https://iadigest.com/wp-json/" ) ); wp.apiFetch.nonceMiddleware = wp.apiFetch.createNonceMiddleware( "3d9a281b42" ); wp.apiFetch.use( wp.apiFetch.nonceMiddleware ); wp.apiFetch.use( wp.apiFetch.mediaUploadMiddleware ); wp.apiFetch.nonceEndpoint = "https://iadigest.com/wp-admin/admin-ajax.php?action=rest-nonce"; //# sourceURL=wp-api-fetch-js-after </script> <script id="srfm-form-submit-js-extra"> var srfm_submit = {"site_url":"https://iadigest.com","nonce":"3d9a281b42","messages":{"srfm_valid_phone_number":"Please enter a valid phone number.","srfm_valid_url":"Please enter a valid URL.","srfm_confirm_email_same":"Confirmation email does not match.","srfm_valid_email":"Please enter a valid email address.","srfm_textarea_min_chars":"Please enter at least %s characters.","srfm_input_min_value":"Minimum value is %s","srfm_input_max_value":"Maximum value is %s","srfm_dropdown_min_selections":"Minimum %s selections are required","srfm_dropdown_max_selections":"Maximum %s selections are allowed","srfm_multi_choice_min_selections":"Minimum %s selections are required","srfm_multi_choice_max_selections":"Maximum %s selections are allowed","srfm_turnstile_error_message":"Turnstile sitekey verification failed. Please contact your site administrator.","srfm_google_captcha_error_message":"Google Captcha sitekey verification failed. Please contact your site administrator.","srfm_captcha_h_error_message":"HCaptcha sitekey verification failed. Please contact your site administrator."},"is_rtl":""}; //# sourceURL=srfm-form-submit-js-extra </script> <script id="srfm-form-submit-js" src="https://iadigest.com/wp-content/plugins/sureforms/assets/build/formSubmit.js?ver=2.11.0"></script> <script id="srfm-frontend-js" src="https://iadigest.com/wp-content/plugins/sureforms/assets/js/minified/frontend.min.js?ver=2.11.0"></script> <script id="wp-emoji-settings" type="application/json"> {"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://iadigest.com/wp-includes/js/wp-emoji-release.min.js?ver=7.0.2"}} </script> <script type="module"> /*! This file is auto-generated */ const a=JSON.parse(document.getElementById("wp-emoji-settings").textContent),o=(window._wpemojiSettings=a,"wpEmojiSettingsSupports"),s=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const a=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===a[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,a){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!a(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,a){let r;const o=(r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),s=(o.textBaseline="top",o.font="600 32px Arial",{});return e.forEach(e=>{s[e]=t(o,e,n,a)}),s}function r(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}a.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),c.toString(),p.toString()].join(",")+"));",a=new Blob([e],{type:"text/javascript"});const r=new Worker(URL.createObjectURL(a),{name:"wpTestEmojiSupports"});return void(r.onmessage=e=>{i(n=e.data),r.terminate(),t(n)})}catch(e){}i(n=f(s,u,c,p))}t(n)}).then(e=>{for(const n in e)a.supports[n]=e[n],a.supports.everything=a.supports.everything&&a.supports[n],"flag"!==n&&(a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&a.supports[n]);var t;a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&!a.supports.flag,a.supports.everything||((t=a.source||{}).concatemoji?r(t.concatemoji):t.wpemoji&&t.twemoji&&(r(t.twemoji),r(t.wpemoji)))}); //# sourceURL=https://iadigest.com/wp-includes/js/wp-emoji-loader.min.js </script> </body> </html> <!-- Page cached by LiteSpeed Cache 7.8.1 on 2026-07-28 17:32:16 -->