{"id":91374,"date":"2017-07-31T05:43:23","date_gmt":"2017-07-31T05:43:23","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=91374"},"modified":"2026-02-02T09:31:09","modified_gmt":"2026-02-02T09:31:09","slug":"sending-email-apex","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/sending-email-apex\/","title":{"rendered":"How to Send Email from APEX Code?"},"content":{"rendered":"\n<p>Sending emails from Apex isn&#8217;t complicated, but most developers are overwhelmed with the process.<\/p>\n\n\n\n<p>However, APEX provides classes for composing email messages. Let us walk you through a practical, clean implementation of how to send an email from APEX.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Understanding How Apex Handles Email<\/h2>\n\n\n\n<p>Salesforce sends emails through the Messaging class. The workhorse here is <strong>Messaging.SingleEmailMessage<\/strong>. This class can help you send a single email message to one or more people.<\/p>\n\n\n\n<p>The <strong>setToAddresses()<\/strong> funtion set the <strong>To<\/strong> field of the email. You can provide one email address or multiple addresses as input, separating them with a semicolon.<\/p>\n\n\n\n<p>Next, the <strong>setCcAddresses()<\/strong> function sets the <strong>CC<\/strong> field of the email. On the other hand, the <strong>setInReplyTo()<\/strong> function differs in that it takes a string as an argument.<\/p>\n\n\n\n<p>Furthermore, the <strong>setSubject()<\/strong> function sets the e-mail subject, and the<strong>setHtmlBody()<\/strong> sets the e-mail body in HTML form. <\/p>\n\n\n\n<p>But if you want to set the body in text format, then use the function <strong>setPlainTextBody()<\/strong>. Once configured, use the <strong>sendEmail()<\/strong> function and Salesforce handles delivery.<\/p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading\">Basic Apex Code to Send an Email<\/h2>\n<\/div><\/div>\n\n\n\n<p>This sends a plain-text email to a direct address.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">public class emailSending {\n    public string toMail { get; set;}\n    public string ccMail { get; set;}\n    public string repMail { get; set;}\n    \n    public void sendMail(){\n        Messaging.SingleEmailMessage email = new Messaging.SingleEmailMessage();\n        string&#091;] to = new string&#091;] {toMail};\n        string&#091;] cc = new string&#091;] {ccMail};\n        \n        email.setToAddresses(to);\n        if(ccMail!=null &amp;&amp; ccMail != &#039;&#039;)\n            email.setCcAddresses(cc);\n        if(repmail!=null &amp;&amp; repmail!= &#039;&#039;)\n            email.setInReplyTo(repMail);\n        \n        email.setSubject(&#039;Test Mail&#039;);\n        \n        email.setHtmlBody(&#039;Hello, &lt;br\/&gt;&lt;br\/&gt;This is the test mail that you generated. &lt;br\/&gt;The Email Id for which this mail was generated by &#039;+toMail+&#039;&lt;br\/&gt;&lt;br\/&gt;Regards&lt;br\/&gt; Developer&#039;);\n        try{\n            Messaging.sendEmail(new Messaging.SingleEmailMessage&#091;] { email });\n        }catch(exception e){\n            apexpages.addmessage(new apexpages.message(apexpages.severity.error,e.getMessage()));\n        }\n        \n        toMail = &#039;&#039;;\n        ccMail = &#039;&#039;;\n        repMail = &#039;&#039;;\n    }\n}<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">VF Page Code<\/h2>\n\n\n\n<p>The Code for my VF page is something like this:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;apex:page controller=&quot;emailSending&quot;&gt;\n    &lt;p&gt;\n        Test Email Sending:\n    &lt;\/p&gt;\n    &lt;apex:form&gt;\n        &lt;apex:outputLabel value=&quot;Send Mail To: &quot; for=&quot;To&quot;\/&gt;\n        &lt;apex:inputText value=&quot;{!toMail}&quot; id=&quot;To&quot;\/&gt;&lt;br\/&gt;\n        &lt;apex:outputLabel value=&quot;CC Mail To: &quot; for=&quot;CC&quot;\/&gt;\n        &lt;apex:inputText value=&quot;{!ccMail}&quot; id=&quot;CC&quot;\/&gt;&lt;br\/&gt;\n        &lt;apex:outputLabel value=&quot;Reply Mail To: &quot; for=&quot;rep&quot;\/&gt;\n        &lt;apex:inputText value=&quot;{!repMail}&quot; id=&quot;rep&quot;\/&gt;&lt;br\/&gt;\n        &lt;apex:commandButton action=&quot;{!sendMail}&quot; value=&quot;Send Email&quot;\/&gt;\n    &lt;\/apex:form&gt;\n&lt;\/apex:page&gt;<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Output<\/h2>\n\n\n\n<p>The live preview for my page can be seen here:<\/p>\n\n\n\n<p><a href=\"http:\/\/wk-yat-demo-developer-edition.ap4.force.com\/wkDemo\/testGenerateMail\">http:\/\/wk-yat-demo-developer-edition.ap4.force.com\/wkDemo\/testGenerateMail<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>A Practical Note on Apex Email Limits<\/strong><\/h2>\n\n\n\n<p>This is the part most tutorials skip.<\/p>\n\n\n\n<p>Salesforce enforces daily email limits when you hit them; your code still runs, but messages don\u2019t leave the org.<\/p>\n\n\n\n<p>Apex email is powerful, but it\u2019s not an unlimited infrastructure. If you\u2019re building automated notifications at scale, design with limits in mind:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Avoid sending emails inside loops<\/li>\n\n\n\n<li>Consolidate where possible<\/li>\n\n\n\n<li>Log email attempts for visibility<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Final Thoughts<\/strong><\/h2>\n\n\n\n<p>Sending email with Apex is straightforward, but you have to write email logic that survives real-world scenarios.<\/p>\n\n\n\n<p>Furthermore, you have to keep the implementation clean, respect limits, separate UI from logic, and test with the real user scenarios.<\/p>\n\n\n\n<p>When used properly, it&#8217;s one of the most reliable tools in the Salesforce stack.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Support<\/strong><\/h2>\n\n\n\n<p>If you have any further queries related to the Salesforce stack, please email us at support@webkul.com.<\/p>\n\n\n\n<p>You can also<a href=\"https:\/\/webkul.com\/hire-salesforce-developers\/\"> hire Salesforce Developers<\/a> to help your business deliver more by providing expertise and resources for all kinds of Salesforce development projects.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Sending emails from Apex isn&#8217;t complicated, but most developers are overwhelmed with the process. However, APEX provides classes for composing email messages. Let us walk you through a practical, clean implementation of how to send an email from APEX. Understanding How Apex Handles Email Salesforce sends emails through the Messaging class. The workhorse here is <a href=\"https:\/\/webkul.com\/blog\/sending-email-apex\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":144,"featured_media":91419,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1889,1887,1888],"tags":[1884,5185,5183,5184,1885,5186,5187],"class_list":["post-91374","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-apex","category-salesforce","category-visualforce","tag-apex","tag-apex-email","tag-apex-salesforce","tag-email-apex","tag-salesforce","tag-salesforce-apex-email","tag-salesforce-email-apex"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Send Email from Apex in Salesforce?<\/title>\n<meta name=\"description\" content=\"A practical guide to send email from Apex. Includes working code, Visualforce integration, and real-world implementation tips.\" \/>\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\/sending-email-apex\/\" \/>\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 Apex in Salesforce?\" \/>\n<meta property=\"og:description\" content=\"A practical guide to send email from Apex. Includes working code, Visualforce integration, and real-world implementation tips.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/sending-email-apex\/\" \/>\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=\"2017-07-31T05:43:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-02T09:31:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/download-19.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=\"Yathansh Sharma\" \/>\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=\"Yathansh Sharma\" \/>\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\/sending-email-apex\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/sending-email-apex\/\"},\"author\":{\"name\":\"Yathansh Sharma\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/2cf74c97cc99e81430138433b2e5a342\"},\"headline\":\"How to Send Email from APEX Code?\",\"datePublished\":\"2017-07-31T05:43:23+00:00\",\"dateModified\":\"2026-02-02T09:31:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/sending-email-apex\/\"},\"wordCount\":391,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/sending-email-apex\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/download-19.png\",\"keywords\":[\"Apex\",\"Apex Email\",\"APEX Salesforce\",\"Email Apex\",\"Salesforce\",\"Salesforce APEX Email\",\"Salesforce Email APEX\"],\"articleSection\":[\"Apex\",\"Salesforce\",\"Visualforce\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/sending-email-apex\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/sending-email-apex\/\",\"url\":\"https:\/\/webkul.com\/blog\/sending-email-apex\/\",\"name\":\"How to Send Email from Apex in Salesforce?\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/sending-email-apex\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/sending-email-apex\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/download-19.png\",\"datePublished\":\"2017-07-31T05:43:23+00:00\",\"dateModified\":\"2026-02-02T09:31:09+00:00\",\"description\":\"A practical guide to send email from Apex. Includes working code, Visualforce integration, and real-world implementation tips.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/sending-email-apex\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/sending-email-apex\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/sending-email-apex\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/download-19.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/download-19.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/sending-email-apex\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Send Email from APEX Code?\"}]},{\"@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\/2cf74c97cc99e81430138433b2e5a342\",\"name\":\"Yathansh Sharma\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/631dfbfdb0f359990ee300274cf444e7dc7da6005653e2b711d3c9197caa4ab3?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\/631dfbfdb0f359990ee300274cf444e7dc7da6005653e2b711d3c9197caa4ab3?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Yathansh Sharma\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/yathansh-sharma081\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Send Email from Apex in Salesforce?","description":"A practical guide to send email from Apex. Includes working code, Visualforce integration, and real-world implementation tips.","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\/sending-email-apex\/","og_locale":"en_US","og_type":"article","og_title":"How to Send Email from Apex in Salesforce?","og_description":"A practical guide to send email from Apex. Includes working code, Visualforce integration, and real-world implementation tips.","og_url":"https:\/\/webkul.com\/blog\/sending-email-apex\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-07-31T05:43:23+00:00","article_modified_time":"2026-02-02T09:31:09+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/download-19.png","type":"image\/png"}],"author":"Yathansh Sharma","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Yathansh Sharma","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/sending-email-apex\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/sending-email-apex\/"},"author":{"name":"Yathansh Sharma","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/2cf74c97cc99e81430138433b2e5a342"},"headline":"How to Send Email from APEX Code?","datePublished":"2017-07-31T05:43:23+00:00","dateModified":"2026-02-02T09:31:09+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/sending-email-apex\/"},"wordCount":391,"commentCount":2,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/sending-email-apex\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/download-19.png","keywords":["Apex","Apex Email","APEX Salesforce","Email Apex","Salesforce","Salesforce APEX Email","Salesforce Email APEX"],"articleSection":["Apex","Salesforce","Visualforce"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/sending-email-apex\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/sending-email-apex\/","url":"https:\/\/webkul.com\/blog\/sending-email-apex\/","name":"How to Send Email from Apex in Salesforce?","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/sending-email-apex\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/sending-email-apex\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/download-19.png","datePublished":"2017-07-31T05:43:23+00:00","dateModified":"2026-02-02T09:31:09+00:00","description":"A practical guide to send email from Apex. Includes working code, Visualforce integration, and real-world implementation tips.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/sending-email-apex\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/sending-email-apex\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/sending-email-apex\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/download-19.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/download-19.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/sending-email-apex\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Send Email from APEX Code?"}]},{"@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\/2cf74c97cc99e81430138433b2e5a342","name":"Yathansh Sharma","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/631dfbfdb0f359990ee300274cf444e7dc7da6005653e2b711d3c9197caa4ab3?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\/631dfbfdb0f359990ee300274cf444e7dc7da6005653e2b711d3c9197caa4ab3?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Yathansh Sharma"},"url":"https:\/\/webkul.com\/blog\/author\/yathansh-sharma081\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/91374","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\/144"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=91374"}],"version-history":[{"count":10,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/91374\/revisions"}],"predecessor-version":[{"id":524463,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/91374\/revisions\/524463"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/91419"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=91374"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=91374"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=91374"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}