{"id":306,"date":"2025-12-29T07:46:10","date_gmt":"2025-12-29T07:46:10","guid":{"rendered":"https:\/\/mailmug.net\/blog\/?p=306"},"modified":"2025-12-31T19:39:49","modified_gmt":"2025-12-31T19:39:49","slug":"how-to-send-email-from-python-quart-non-blocking","status":"publish","type":"post","link":"https:\/\/mailmug.net\/blog\/how-to-send-email-from-python-quart-non-blocking\/","title":{"rendered":"How to Send Email from Python Quart (Non-Blocking)"},"content":{"rendered":"\n<p>This demonstrates a professional, non-blocking approach to sending emails from a Python <a href=\"https:\/\/quart.palletsprojects.com\/\">Quart<\/a> application using background tasks. No extra Python modules are needed\u2014this approach uses the built-in <code>smtplib<\/code> module included with Python. <\/p>\n\n\n\n<div style=\"height:68px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"How to Send Emails in Python Quart Without Blocking Requests?\" width=\"640\" height=\"360\" src=\"https:\/\/www.youtube.com\/embed\/mbPODKFPAmI?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><\/figure>\n\n\n\n<div style=\"height:75px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Quart Application Skeleton<\/h2>\n\n\n\n<p>Start by activating your Python virtual environment. Then install the <strong>quart<\/strong> module.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\npython3 -m venv .venv  \n\nsource .venv\/bin\/activate  \n\npip install quart\n<\/pre><\/div>\n\n\n<p>After that, create <code><strong>app.py<\/strong><\/code> and include the code below.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\nfrom quart import Quart, render_template, websocket\n\napp = Quart(__name__)\n\n@app.route(&quot;\/&quot;)\nasync def welcome():\n    return {&quot;message&quot;: &quot;hi&quot;}\n\n\n@app.route(&quot;\/api\/send-email&quot;)\nasync def send_email():\n     \n    return {&quot;message&quot;: &quot;Notification sent in the background&quot;}\n\n<\/pre><\/div>\n\n\n<div style=\"height:66px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Create SandBox SMTP Email Account<\/h2>\n\n\n\n<p><a href=\"https:\/\/mailmug.net\">MailMug.net <\/a>offers a free SMTP account to safely test emails, or you can use any other SMTP service like Gmail.<\/p>\n\n\n<div class=\"wp-block-image wp-duotone-unset-1\">\n<figure class=\"aligncenter size-full is-resized\"><a href=\"https:\/\/mailmug.net\"><img loading=\"lazy\" decoding=\"async\" width=\"631\" height=\"262\" src=\"https:\/\/mailmug.net\/blog\/wp-content\/uploads\/2023\/08\/credentials.png\" alt=\"SMPT Sandbox account for php flight\" class=\"wp-image-75\" style=\"width:843px;height:auto\" srcset=\"https:\/\/mailmug.net\/blog\/wp-content\/uploads\/2023\/08\/credentials.png 631w, https:\/\/mailmug.net\/blog\/wp-content\/uploads\/2023\/08\/credentials-300x125.png 300w\" sizes=\"(max-width: 631px) 100vw, 631px\" \/><\/a><\/figure><\/div>\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/mailmug.net\/\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/mailmug.net\/blog\/wp-content\/uploads\/2023\/08\/sandbox-1024x576.png\" alt=\"SMTP Sandbox\" class=\"wp-image-267\" srcset=\"https:\/\/mailmug.net\/blog\/wp-content\/uploads\/2023\/08\/sandbox-1024x576.png 1024w, https:\/\/mailmug.net\/blog\/wp-content\/uploads\/2023\/08\/sandbox-300x169.png 300w, https:\/\/mailmug.net\/blog\/wp-content\/uploads\/2023\/08\/sandbox-768x432.png 768w, https:\/\/mailmug.net\/blog\/wp-content\/uploads\/2023\/08\/sandbox.png 1200w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Python Quart: Email Function Example<\/h2>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\nfrom email.mime.text import MIMEText\nfrom email.mime.multipart import MIMEMultipart\nimport smtplib\n\nport = 2525\nsmtp_server = &quot;smtp.mailmug.net&quot;\nlogin = &quot;username&quot; # paste your login generated by mailmug\npassword = &quot;pass&quot; # paste your password generated by mailmug\nsender_email = &quot;mailmug@example.com&quot;\n\ndef send_email_task(message: MIMEMultipart, to_email: str):\n    html = &quot;&quot;&quot;\\\n        &lt;html&gt;\n        &lt;body&gt;\n            &lt;p&gt;Hi,&lt;br&gt;\n            This is the test email&lt;\/p&gt;\n        &lt;\/body&gt;\n        &lt;\/html&gt;\n        &quot;&quot;&quot;\n    part = MIMEText(html, &quot;html&quot;)\n    message.attach(part)\n   \n    server = smtplib.SMTP(smtp_server, port)\n    server.set_debuglevel(1)\n    server.esmtp_features&#x5B;&#039;auth&#039;] = &#039;LOGIN DIGEST-MD5 PLAIN&#039;\n    server.login(login, password)\n    server.sendmail(\n        sender_email, to_email, message.as_string()\n    )\n<\/pre><\/div>\n\n\n<p>Debug output can be disabled by setting <code><strong>set_debuglevel<\/strong><\/code> to <code><strong>0<\/strong><\/code>.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nserver.set_debuglevel(1)\n<\/pre><\/div>\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Add a Background Task in Quart for Sending Emails<\/h2>\n\n\n\n<p>Add route &#8220;<strong>\/api\/send-email<\/strong>&#8221; to send email. Use the <code>add_background_task<\/code> method to add a background task. The first argument is a callback function; in our example, <code>send_email_task<\/code> serves as the callback.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\n@app.route(&quot;\/api\/send-email&quot;)\nasync def send_email():\n    to_email = &quot;new@example.com&quot;\n    message = MIMEMultipart(&quot;alternative&quot;)\n    message&#x5B;&quot;Subject&quot;] = &quot;Test subject&quot;\n    message&#x5B;&quot;From&quot;] = sender_email\n    message&#x5B;&quot;To&quot;] = to_email\n    app.add_background_task(send_email_task, message, to_email)\n    return {&quot;message&quot;: &quot;Notification sent in the background&quot;}\n<\/pre><\/div>\n\n\n<div style=\"height:77px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Complete Code<\/h2>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\nfrom quart import Quart, render_template, websocket\nimport smtplib\nfrom email.mime.text import MIMEText\nfrom email.mime.multipart import MIMEMultipart\n\n\napp = Quart(__name__)\n\n@app.route(&quot;\/&quot;)\nasync def welcome():\n    return {&quot;message&quot;: &quot;hi&quot;}\n\n\nport = 2525\nsmtp_server = &quot;smtp.mailmug.net&quot;\nlogin = &quot;username&quot; # paste your login generated by mailmug\npassword = &quot;pass&quot; # paste your password generated by mailmug\nsender_email = &quot;mailmug@example.com&quot;\n\n\n@app.route(&quot;\/api\/send-email&quot;)\nasync def send_email():\n    to_email = &quot;new@example.com&quot;\n    message = MIMEMultipart(&quot;alternative&quot;)\n    message&#x5B;&quot;Subject&quot;] = &quot;Test subject&quot;\n    message&#x5B;&quot;From&quot;] = sender_email\n    message&#x5B;&quot;To&quot;] = to_email\n    app.add_background_task(send_email_task, message, to_email)\n    return {&quot;message&quot;: &quot;Notification sent in the background&quot;}\n\ndef send_email_task(message: MIMEMultipart, to_email: str):\n    html = &quot;&quot;&quot;\\\n        &lt;html&gt;\n        &lt;body&gt;\n            &lt;p&gt;Hi,&lt;br&gt;\n            This is the test email&lt;\/p&gt;\n        &lt;\/body&gt;\n        &lt;\/html&gt;\n        &quot;&quot;&quot;\n    part = MIMEText(html, &quot;html&quot;)\n    message.attach(part)\n   \n    server = smtplib.SMTP(smtp_server, port)\n    server.set_debuglevel(1)\n    server.esmtp_features&#x5B;&#039;auth&#039;] = &#039;LOGIN DIGEST-MD5 PLAIN&#039;\n    server.login(login, password)\n    server.sendmail(\n        sender_email, to_email, message.as_string()\n    )\n\n \n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\">Run the Quart Application<\/h2>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\nquart run\n<\/pre><\/div>\n\n\n<p>Open <code>http:\/\/127.0.0.1:5000\/api\/send-email<\/code> in your browser, then verify the email in your MailMug.net dashboard or your inbox if using a regular SMTP account.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>This demonstrates a professional, non-blocking approach to sending emails from a Python Quart application using background tasks. No extra Python modules are needed\u2014this approach uses the built-in smtplib module included with Python. Quart Application Skeleton Start by activating your Python virtual environment. Then install the quart module. After that, create app.py and include the code [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":316,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[22],"tags":[],"class_list":["post-306","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-python"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.13 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Send Email from Python Quart (Non-Blocking) - MailMug Blog<\/title>\n<meta name=\"description\" content=\"This demonstrates a professional, non-blocking approach to sending emails from a Python Quart application using background tasks.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/mailmug.net\/blog\/how-to-send-email-from-python-quart-non-blocking\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Send Email from Python Quart (Non-Blocking) - MailMug Blog\" \/>\n<meta property=\"og:description\" content=\"This demonstrates a professional, non-blocking approach to sending emails from a Python Quart application using background tasks.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mailmug.net\/blog\/how-to-send-email-from-python-quart-non-blocking\/\" \/>\n<meta property=\"og:site_name\" content=\"MailMug Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-29T07:46:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-31T19:39:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mailmug.net\/blog\/wp-content\/uploads\/2025\/12\/python-quart.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1220\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/mailmug.net\/blog\/how-to-send-email-from-python-quart-non-blocking\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/mailmug.net\/blog\/how-to-send-email-from-python-quart-non-blocking\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/mailmug.net\/blog\/#\/schema\/person\/97fb32aba211755b8d48bdd54df9c66d\"},\"headline\":\"How to Send Email from Python Quart (Non-Blocking)\",\"datePublished\":\"2025-12-29T07:46:10+00:00\",\"dateModified\":\"2025-12-31T19:39:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/mailmug.net\/blog\/how-to-send-email-from-python-quart-non-blocking\/\"},\"wordCount\":172,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/mailmug.net\/blog\/#organization\"},\"articleSection\":[\"python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/mailmug.net\/blog\/how-to-send-email-from-python-quart-non-blocking\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/mailmug.net\/blog\/how-to-send-email-from-python-quart-non-blocking\/\",\"url\":\"https:\/\/mailmug.net\/blog\/how-to-send-email-from-python-quart-non-blocking\/\",\"name\":\"How to Send Email from Python Quart (Non-Blocking) - MailMug Blog\",\"isPartOf\":{\"@id\":\"https:\/\/mailmug.net\/blog\/#website\"},\"datePublished\":\"2025-12-29T07:46:10+00:00\",\"dateModified\":\"2025-12-31T19:39:49+00:00\",\"description\":\"This demonstrates a professional, non-blocking approach to sending emails from a Python Quart application using background tasks.\",\"breadcrumb\":{\"@id\":\"https:\/\/mailmug.net\/blog\/how-to-send-email-from-python-quart-non-blocking\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/mailmug.net\/blog\/how-to-send-email-from-python-quart-non-blocking\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/mailmug.net\/blog\/how-to-send-email-from-python-quart-non-blocking\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/mailmug.net\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Send Email from Python Quart (Non-Blocking)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/mailmug.net\/blog\/#website\",\"url\":\"https:\/\/mailmug.net\/blog\/\",\"name\":\"MailMug\",\"description\":\"SandBox SMTP Email Account\",\"publisher\":{\"@id\":\"https:\/\/mailmug.net\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/mailmug.net\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/mailmug.net\/blog\/#organization\",\"name\":\"MailMug\",\"url\":\"https:\/\/mailmug.net\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/mailmug.net\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/mailmug.net\/blog\/wp-content\/uploads\/2023\/08\/logo.png\",\"contentUrl\":\"https:\/\/mailmug.net\/blog\/wp-content\/uploads\/2023\/08\/logo.png\",\"width\":320,\"height\":293,\"caption\":\"MailMug\"},\"image\":{\"@id\":\"https:\/\/mailmug.net\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/mailmug.net\/blog\/#\/schema\/person\/97fb32aba211755b8d48bdd54df9c66d\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/mailmug.net\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1e1bdecb54e39d090acd1ba4b20cb7db?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1e1bdecb54e39d090acd1ba4b20cb7db?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"https:\/\/mailmug.net\/blog\"],\"url\":\"https:\/\/mailmug.net\/blog\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Send Email from Python Quart (Non-Blocking) - MailMug Blog","description":"This demonstrates a professional, non-blocking approach to sending emails from a Python Quart application using background tasks.","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:\/\/mailmug.net\/blog\/how-to-send-email-from-python-quart-non-blocking\/","og_locale":"en_US","og_type":"article","og_title":"How to Send Email from Python Quart (Non-Blocking) - MailMug Blog","og_description":"This demonstrates a professional, non-blocking approach to sending emails from a Python Quart application using background tasks.","og_url":"https:\/\/mailmug.net\/blog\/how-to-send-email-from-python-quart-non-blocking\/","og_site_name":"MailMug Blog","article_published_time":"2025-12-29T07:46:10+00:00","article_modified_time":"2025-12-31T19:39:49+00:00","og_image":[{"width":1220,"height":720,"url":"https:\/\/mailmug.net\/blog\/wp-content\/uploads\/2025\/12\/python-quart.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/mailmug.net\/blog\/how-to-send-email-from-python-quart-non-blocking\/#article","isPartOf":{"@id":"https:\/\/mailmug.net\/blog\/how-to-send-email-from-python-quart-non-blocking\/"},"author":{"name":"admin","@id":"https:\/\/mailmug.net\/blog\/#\/schema\/person\/97fb32aba211755b8d48bdd54df9c66d"},"headline":"How to Send Email from Python Quart (Non-Blocking)","datePublished":"2025-12-29T07:46:10+00:00","dateModified":"2025-12-31T19:39:49+00:00","mainEntityOfPage":{"@id":"https:\/\/mailmug.net\/blog\/how-to-send-email-from-python-quart-non-blocking\/"},"wordCount":172,"commentCount":0,"publisher":{"@id":"https:\/\/mailmug.net\/blog\/#organization"},"articleSection":["python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/mailmug.net\/blog\/how-to-send-email-from-python-quart-non-blocking\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/mailmug.net\/blog\/how-to-send-email-from-python-quart-non-blocking\/","url":"https:\/\/mailmug.net\/blog\/how-to-send-email-from-python-quart-non-blocking\/","name":"How to Send Email from Python Quart (Non-Blocking) - MailMug Blog","isPartOf":{"@id":"https:\/\/mailmug.net\/blog\/#website"},"datePublished":"2025-12-29T07:46:10+00:00","dateModified":"2025-12-31T19:39:49+00:00","description":"This demonstrates a professional, non-blocking approach to sending emails from a Python Quart application using background tasks.","breadcrumb":{"@id":"https:\/\/mailmug.net\/blog\/how-to-send-email-from-python-quart-non-blocking\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mailmug.net\/blog\/how-to-send-email-from-python-quart-non-blocking\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/mailmug.net\/blog\/how-to-send-email-from-python-quart-non-blocking\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/mailmug.net\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Send Email from Python Quart (Non-Blocking)"}]},{"@type":"WebSite","@id":"https:\/\/mailmug.net\/blog\/#website","url":"https:\/\/mailmug.net\/blog\/","name":"MailMug","description":"SandBox SMTP Email Account","publisher":{"@id":"https:\/\/mailmug.net\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/mailmug.net\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/mailmug.net\/blog\/#organization","name":"MailMug","url":"https:\/\/mailmug.net\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mailmug.net\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/mailmug.net\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/mailmug.net\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":320,"height":293,"caption":"MailMug"},"image":{"@id":"https:\/\/mailmug.net\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/mailmug.net\/blog\/#\/schema\/person\/97fb32aba211755b8d48bdd54df9c66d","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mailmug.net\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/1e1bdecb54e39d090acd1ba4b20cb7db?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1e1bdecb54e39d090acd1ba4b20cb7db?s=96&d=mm&r=g","caption":"admin"},"sameAs":["https:\/\/mailmug.net\/blog"],"url":"https:\/\/mailmug.net\/blog\/author\/admin\/"}]}},"amp_enabled":true,"post_mailing_queue_ids":[],"_links":{"self":[{"href":"https:\/\/mailmug.net\/blog\/wp-json\/wp\/v2\/posts\/306"}],"collection":[{"href":"https:\/\/mailmug.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mailmug.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mailmug.net\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mailmug.net\/blog\/wp-json\/wp\/v2\/comments?post=306"}],"version-history":[{"count":13,"href":"https:\/\/mailmug.net\/blog\/wp-json\/wp\/v2\/posts\/306\/revisions"}],"predecessor-version":[{"id":322,"href":"https:\/\/mailmug.net\/blog\/wp-json\/wp\/v2\/posts\/306\/revisions\/322"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mailmug.net\/blog\/wp-json\/wp\/v2\/media\/316"}],"wp:attachment":[{"href":"https:\/\/mailmug.net\/blog\/wp-json\/wp\/v2\/media?parent=306"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mailmug.net\/blog\/wp-json\/wp\/v2\/categories?post=306"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mailmug.net\/blog\/wp-json\/wp\/v2\/tags?post=306"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}