{"id":58800,"date":"2016-09-08T15:10:56","date_gmt":"2016-09-08T15:10:56","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=58800"},"modified":"2021-07-16T14:50:35","modified_gmt":"2021-07-16T14:50:35","slug":"odoo-email-templates","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/odoo-email-templates\/","title":{"rendered":"Odoo Email Templates"},"content":{"rendered":"\n<p class=\"has-text-align-center\"><code><em>Today we are going to discuss about how to send the emails in Odoo. &nbsp;For sending an email we need to create an email template which we are going to&nbsp;be&nbsp;delivered&nbsp;while&nbsp;sending&nbsp;an email. There are two ways to create&nbsp;an email template.&nbsp;One way is creating &nbsp;template using XML&nbsp;and another is&nbsp;creating&nbsp;email template using the Python code. we are going to discuss both the ways.<br>\n<\/em><\/code><\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<p><strong>Creating the template using XML.<\/strong><\/p>\n\n\n\n<p>An email template contains the following fields.<br>1. name = name of the email template<br>2 . email_from = &nbsp;sender &nbsp;sender of the email<br>3. subject = subject of the email.<br>4. email_to =&nbsp;comma separated address of the receivers<br>5.model_id = comma separated id of the partners<br>6.auto_delete = permanently delete the mail after sending it.<br>7.lang = Optional translation language(ISO code)&nbsp; to select when sending an email.<br>8.body_html &nbsp; = message to be sent to via email.<br>9.report_name&nbsp;= Name of the generated report file.<br>10.report_template = &nbsp; Report template if sent in attachment etc.<\/p>\n\n\n\n<p>Here is an example.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:xml\">&lt;record id=\"email_template_edi_invoice\" model=\"mail.template\"&gt;\n            &lt;field name=\"name\"&gt;Invoice - Send by Email&lt;\/field&gt;\n            &lt;field name=\"email_from\"&gt;${(object.user_id.email and '%s &amp;lt;%s&amp;gt;' %      (object.user_id.name, object.user_id.email) or '')|safe}&lt;\/field&gt;\n            &lt;field name=\"subject\"&gt;${object.company_id.name} Invoice (Ref ${object.number or 'n\/a'})&lt;\/field&gt;\n            &lt;field name=\"partner_to\"&gt;${object.partner_id.id}&lt;\/field&gt;\n            &lt;field name=\"model_id\" ref=\"account.model_account_invoice\"\/&gt;\n            &lt;field name=\"auto_delete\" eval=\"True\"\/&gt;\n            &lt;field name=\"report_template\" ref=\"account_invoices\"\/&gt;\n            &lt;field name=\"report_name\"&gt;Invoice_${(object.number or '').replace('\/','_')}_${object.state == 'draft' and 'draft' or ''}&lt;\/field&gt;\n            &lt;field name=\"lang\"&gt;${object.partner_id.lang}&lt;\/field&gt;\n            &lt;field name=\"body_html\"&gt;&lt;![CDATA[\n                 Message you need to deliver\n            ]]&gt;&lt;\/field&gt;\n        &lt;\/record&gt;<\/pre>\n\n\n\n<p><strong>Creating a template from python Code.<\/strong><\/p>\n\n\n\n<p>Create a simple template using odoo orm create method in email.template or create a simple template using XML . &nbsp;After a template is created we can add or modify the fields in the template &nbsp;using the python code as follows.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:py\">def send_email(self,cr,uid,ids,context=None):\n         template_obj = self.pool.get('mail.template')\n         ir_model_data = self.pool.get('ir.model.data')\n         # Create a template id by either of the ways.\n         #template_id = template_obj.create(cr, uid,{'name':'Template Name','model_id':'Your model id'})\n         template_id= ir_model_data.get_object_reference(cr, uid, 'module_name', 'xml_template_id')[1]\n          if template_id:\n            #------------ if a template id is created -------------------\n              values = template_obj.generate_email(cr, uid, template_id, ids[0], context=context)\n             #  Set\/Modify the values for the template.\n             values['subject'] = subject you want to show\n             values['email_to'] = receiver of the email\n             values['partner_to'] = partner ids\n             values['body'] = body_html\n                  .....\n                  .....\n            #--------------------------------------------------------------\n            #----------------if template id is not created-----------------\n             values = {\n            'subject': 'subect ',\n             'body_html': 'Message to be sent',\n             'email_to': receiver email,\n             'email_from': 'sender_email',\n              values['partner_to'] : partner ids\n              ......\n              ......\n             }\n          #---------------------------------------------------------------\n        mail_obj = self.pool.get('mail.mail') \n        msg_id = mail_obj.create(cr, uid, values, context=context) \n        if msg_id: \n              mail_obj.send(cr, uid, [msg_id], context=context) \n         return True\n&nbsp;\n&nbsp;\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Today we are going to discuss about how to send the emails in Odoo. &nbsp;For sending an email we need to create an email template which we are going to&nbsp;be&nbsp;delivered&nbsp;while&nbsp;sending&nbsp;an email. There are two ways to create&nbsp;an email template.&nbsp;One way is creating &nbsp;template using XML&nbsp;and another is&nbsp;creating&nbsp;email template using the Python code. we are going <a href=\"https:\/\/webkul.com\/blog\/odoo-email-templates\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":88,"featured_media":45127,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2007],"tags":[3585,3581,3584,3580,3586,3587,3582],"class_list":["post-58800","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-odoo","tag-create-email-template-from-python-code","tag-email-templates-using-python-code","tag-odoo-email-from-python-code","tag-odoo-email-template","tag-odoo-mail","tag-odoo-send-email","tag-send-email-using-python-code"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>odoo email templates<\/title>\n<meta name=\"description\" content=\"There are two ways to create an email template. One way is creating template using XML and another is creating email template using the Python code\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/odoo-email-templates\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"odoo email templates\" \/>\n<meta property=\"og:description\" content=\"There are two ways to create an email template. One way is creating template using XML and another is creating email template using the Python code\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/odoo-email-templates\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2016-09-08T15:10:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-07-16T14:50:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Customize-The-Grid-View.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Jahangir Naik\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jahangir Naik\" \/>\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:\/\/webkul.com\/blog\/odoo-email-templates\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/odoo-email-templates\/\"},\"author\":{\"name\":\"Jahangir Naik\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/d3efd6f1d02c2713752e7cba0b626ca6\"},\"headline\":\"Odoo Email Templates\",\"datePublished\":\"2016-09-08T15:10:56+00:00\",\"dateModified\":\"2021-07-16T14:50:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/odoo-email-templates\/\"},\"wordCount\":155,\"commentCount\":5,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/odoo-email-templates\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Customize-The-Grid-View.png\",\"keywords\":[\"create email template from python code\",\"email templates using python code\",\"odoo email from python code\",\"odoo email template\",\"odoo mail\",\"odoo send email\",\"send email using python code\"],\"articleSection\":[\"Odoo\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/odoo-email-templates\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/odoo-email-templates\/\",\"url\":\"https:\/\/webkul.com\/blog\/odoo-email-templates\/\",\"name\":\"odoo email templates\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/odoo-email-templates\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/odoo-email-templates\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Customize-The-Grid-View.png\",\"datePublished\":\"2016-09-08T15:10:56+00:00\",\"dateModified\":\"2021-07-16T14:50:35+00:00\",\"description\":\"There are two ways to create an email template. One way is creating template using XML and another is creating email template using the Python code\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/odoo-email-templates\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/odoo-email-templates\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/odoo-email-templates\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Customize-The-Grid-View.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Customize-The-Grid-View.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/odoo-email-templates\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Odoo Email Templates\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/d3efd6f1d02c2713752e7cba0b626ca6\",\"name\":\"Jahangir Naik\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/20021fdcdb324166dd5aef0f183ffb391facf8853dd58f9fcabc0950f4118c01?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/20021fdcdb324166dd5aef0f183ffb391facf8853dd58f9fcabc0950f4118c01?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Jahangir Naik\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/jahangir260\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"odoo email templates","description":"There are two ways to create an email template. One way is creating template using XML and another is creating email template using the Python code","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:\/\/webkul.com\/blog\/odoo-email-templates\/","og_locale":"en_US","og_type":"article","og_title":"odoo email templates","og_description":"There are two ways to create an email template. One way is creating template using XML and another is creating email template using the Python code","og_url":"https:\/\/webkul.com\/blog\/odoo-email-templates\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2016-09-08T15:10:56+00:00","article_modified_time":"2021-07-16T14:50:35+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Customize-The-Grid-View.png","type":"image\/png"}],"author":"Jahangir Naik","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Jahangir Naik","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/odoo-email-templates\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/odoo-email-templates\/"},"author":{"name":"Jahangir Naik","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/d3efd6f1d02c2713752e7cba0b626ca6"},"headline":"Odoo Email Templates","datePublished":"2016-09-08T15:10:56+00:00","dateModified":"2021-07-16T14:50:35+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/odoo-email-templates\/"},"wordCount":155,"commentCount":5,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/odoo-email-templates\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Customize-The-Grid-View.png","keywords":["create email template from python code","email templates using python code","odoo email from python code","odoo email template","odoo mail","odoo send email","send email using python code"],"articleSection":["Odoo"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/odoo-email-templates\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/odoo-email-templates\/","url":"https:\/\/webkul.com\/blog\/odoo-email-templates\/","name":"odoo email templates","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/odoo-email-templates\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/odoo-email-templates\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Customize-The-Grid-View.png","datePublished":"2016-09-08T15:10:56+00:00","dateModified":"2021-07-16T14:50:35+00:00","description":"There are two ways to create an email template. One way is creating template using XML and another is creating email template using the Python code","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/odoo-email-templates\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/odoo-email-templates\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/odoo-email-templates\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Customize-The-Grid-View.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Customize-The-Grid-View.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/odoo-email-templates\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Odoo Email Templates"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/d3efd6f1d02c2713752e7cba0b626ca6","name":"Jahangir Naik","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/20021fdcdb324166dd5aef0f183ffb391facf8853dd58f9fcabc0950f4118c01?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/20021fdcdb324166dd5aef0f183ffb391facf8853dd58f9fcabc0950f4118c01?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Jahangir Naik"},"url":"https:\/\/webkul.com\/blog\/author\/jahangir260\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/58800","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/88"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=58800"}],"version-history":[{"count":19,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/58800\/revisions"}],"predecessor-version":[{"id":296832,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/58800\/revisions\/296832"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/45127"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=58800"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=58800"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=58800"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}