{"id":2150,"date":"2019-03-25T17:38:16","date_gmt":"2019-03-25T20:38:16","guid":{"rendered":"http:\/\/xexeu.elipse.com.br\/pt\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/"},"modified":"2026-03-30T15:36:07","modified_gmt":"2026-03-30T18:36:07","slug":"kb28661-sending-emails-without-a-driver-using-iis-and-cdo","status":"publish","type":"post","link":"https:\/\/kb.elipse.com.br\/en\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/","title":{"rendered":"KB-28661: Sending e-mails without a driver in E3 using IIS (CDO) and PowerShell."},"content":{"rendered":"<div style=\"text-align: justify;\">\n<p><span style=\"font-weight: bold;\">Question:<\/span><\/p>\n<p>On an application based in <span style=\"font-weight: bold;\">CDO<\/span>-Collaboration Data Objects (tool developed by Microsoft to make it easier sending messages in applications)-, the <span style=\"font-weight: bold;\">IIS <\/span>&#8211; Internet Information Services &#8211; is used to send e-mails without using the <span style=\"font-weight: bold;\">SendMail <\/span>driver.<\/p>\n<p>However, the messages are not being sent, and an error message is returned. How can I fix this problem?<\/p>\n<p><span style=\"font-weight: bold;\">Solution: <\/span><\/p>\n<\/div>\n<div style=\"text-align: justify;\">This can happen because the server being used needs authentication. So, to fix the problem, you must increment the following lines in the script that sends the e-mail:<\/div>\n<pre><span style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\">Sub CommandButton1_Click() <\/span><br style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\" \/><span style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\">Set objMessage = CreateObject(\"CDO.Message\")<\/span><br style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\" \/><span style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\">objMessage.Subject = \"Email's title\"<\/span><br style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\" \/><span style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\">objMessage.Sender = \"sender@server.com\"<\/span><br style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\" \/><span style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\">objMessage.To = \"recipient@server.com\"<\/span><br style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\" \/><span style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\">objMessage.TextBody = \"Email's text body\"<\/span><br style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\" \/><span style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\">objMessage.Configuration.Fields.Item(\"http:\/\/schemas.microsoft.com\/cdo\/configuration\/sendusing\") = 2<\/span><br style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\" \/><span style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\">objMessage.Configuration.Fields.Item(\"http:\/\/schemas.microsoft.com\/cdo\/configuration\/smtpserver\") = \"smtp.server.com\"<\/span><br style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\" \/><span style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\">objMessage.Configuration.Fields.Item(\"http:\/\/schemas.microsoft.com\/cdo\/configuration\/smtpserverport\") = 465<\/span><br style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\" \/><span style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\">objMessage.Configuration.Fields.Item(\"http:\/\/schemas.microsoft.com\/cdo\/configuration\/smtpauthenticate\") = 1<\/span><br style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\" \/><span style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\">objMessage.Configuration.Fields.Item(\"http:\/\/schemas.microsoft.com\/cdo\/configuration\/sendusername\") = \"send@server.com\"<\/span><br style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\" \/><span style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\">objMessage.Configuration.Fields.Item(\"http:\/\/schemas.microsoft.com\/cdo\/configuration\/sendpassword\") = \"user password\"<\/span><br style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\" \/><span style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\">objMessage.Configuration.Fields.Item(\"http:\/\/schemas.microsoft.com\/cdo\/configuration\/smtpusessl\") = true<\/span><br style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\" \/><span style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\">objMessage.Configuration.Fields.Item(\"http:\/\/schemas.microsoft.com\/cdo\/configuration\/smtpconnectiontimeout\") = 60<\/span><br style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\" \/><span style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\">objMessage.Configuration.Fields.Update<\/span><br style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\" \/><span style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\">objMessage.Send<\/span><br style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\" \/><span style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\">MsgBox \"The e-mail was successfully sent!\"<\/span><br style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\" \/><span style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\">End Sub<\/span><br style=\"background-color: #ffffff; color: #000000; font-family: Courier New;\" \/>\r\n<\/pre>\n<p data-section-id=\"ywvifp\" data-start=\"168\" data-end=\"209\"><strong>Limitations of CDO in Modern Providers<\/strong><\/p>\n<p data-start=\"110\" data-end=\"528\">CDO (Collaboration Data Objects) is a legacy Windows component that uses an outdated TLS implementation for secure communication with SMTP servers. Providers such as Gmail, Outlook\/Hotmail, and Yahoo have discontinued support for TLS 1.0 and TLS 1.1, currently accepting only TLS 1.2 or higher. Since CDO has limited and unstable support for TLS 1.2, making it incompatible with most modern email providers, send attempts through these providers result in errors such as:<\/p>\n<ul data-start=\"530\" data-end=\"665\">\n<li data-section-id=\"1ha9x05\" data-start=\"530\" data-end=\"571\"><strong data-start=\"532\" data-end=\"546\">0x80040217<\/strong> \u2014 Server not available<\/li>\n<li data-section-id=\"zempym\" data-start=\"572\" data-end=\"620\"><strong data-start=\"574\" data-end=\"588\">0x80040213<\/strong> \u2014 Transport connection failed<\/li>\n<li data-section-id=\"l10wgs\" data-start=\"621\" data-end=\"665\"><strong data-start=\"623\" data-end=\"635\">8004020E<\/strong> \u2014 Sender rejected by server<\/li>\n<\/ul>\n<p data-section-id=\"1xorwfn\" data-start=\"667\" data-end=\"705\"><strong>Alternative: Sending via PowerShell<\/strong><\/p>\n<p data-start=\"707\" data-end=\"858\">As an alternative to CDO, it is possible to use Windows PowerShell to send e-mails directly from Elipse E3 VBScript using the <strong data-start=\"833\" data-end=\"850\">WScript.Shell<\/strong> object.<\/p>\n<p data-section-id=\"nfexpp\" data-start=\"860\" data-end=\"877\"><strong>Component Used<\/strong><\/p>\n<p data-start=\"879\" data-end=\"1083\" data-is-last-node=\"\" data-is-only-node=\"\">PowerShell uses the <strong data-start=\"899\" data-end=\"929\">System.Net.Mail.SmtpClient<\/strong> class from the .NET Framework, which provides native support for TLS 1.2, making it compatible with the security requirements of modern e-mail providers.<\/p>\n<p data-start=\"1422\" data-end=\"1480\">Below is an example of sending an e-mail using Elipse E3:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">Dim oShell\r\nSet oShell = CreateObject(\"WScript.Shell\")\r\n\r\nDim sAssunto, sCorpo, sDestinatario, sRemetente, sSenha\r\nsRemetente    = \"sender@domain.com\"\r\nsDestinatario = \"recipient@domain.com\"\r\nsAssunto      = \"Email subject\"\r\nsCorpo        = \"Email body\"\r\nsSenha        = \"senhaapp16chars\"  \r\n\r\nDim sScript\r\nsScript = \"$smtp = New-Object System.Net.Mail.SmtpClient('smtp.gmail.com', 587);\" & _\r\n          \"$smtp.EnableSsl = $true;\" & _\r\n          \"$smtp.Credentials = New-Object System.Net.NetworkCredential('\" & sRemetente & \"', '\" & sSenha & \"');\" & _\r\n          \"$msg = New-Object System.Net.Mail.MailMessage;\" & _\r\n          \"$msg.From = '\" & sRemetente & \"';\" & _\r\n          \"$msg.To.Add('\" & sDestinatario & \"');\" & _\r\n          \"$msg.Subject = '\" & sAssunto & \"';\" & _\r\n          \"$msg.Body = '\" & sCorpo & \"';\" & _\r\n          \"$smtp.Send($msg);\"\r\n\r\noShell.Run \"powershell -NoProfile -ExecutionPolicy Bypass -Command \"\"\" & sScript & \"\"\"\", 0, True\r\n\r\nSet oShell = Nothing<\/pre>\n<p>&nbsp;<\/p>\n<pre><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Question: On an application based in CDO-Collaboration Data Objects (tool developed by Microsoft to make it easier sending messages in applications)-, the IIS &#8211; Internet Information Services &#8211; is used&hellip;<\/p>\n","protected":false},"author":11,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0},"categories":[763],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>KB-28661: Sending e-mails without a driver in E3 using IIS (CDO) and PowerShell. - Elipse Knowledgebase<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/kb.elipse.com.br\/en\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"KB-28661: Sending e-mails without a driver in E3 using IIS (CDO) and PowerShell.\" \/>\n<meta property=\"og:description\" content=\"Question: On an application based in CDO-Collaboration Data Objects (tool developed by Microsoft to make it easier sending messages in applications)-, the IIS &#8211; Internet Information Services &#8211; is used&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kb.elipse.com.br\/en\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/\" \/>\n<meta property=\"og:site_name\" content=\"Elipse Knowledgebase\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/elipsesoftware\" \/>\n<meta property=\"article:published_time\" content=\"2019-03-25T20:38:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-30T18:36:07+00:00\" \/>\n<meta name=\"author\" content=\"Enrico Busnello Amorim\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Enrico Busnello Amorim\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/\"},\"author\":{\"name\":\"Enrico Busnello Amorim\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/aa880bd098677c1ae91fa708e17cdc12\"},\"headline\":\"KB-28661: Sending e-mails without a driver in E3 using IIS (CDO) and PowerShell.\",\"datePublished\":\"2019-03-25T20:38:16+00:00\",\"dateModified\":\"2026-03-30T18:36:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/\"},\"wordCount\":514,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"articleSection\":[\"Scripts\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/\",\"url\":\"https:\/\/kb.elipse.com.br\/en\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/\",\"name\":\"[:pt]KB-28661: Sending e-mails without a driver using IIS and CDO.[:en]KB-28661: Sending e-mails without a driver in E3 using IIS (CDO) and PowerShell.[:] - Elipse Knowledgebase\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#website\"},\"datePublished\":\"2019-03-25T20:38:16+00:00\",\"dateModified\":\"2026-03-30T18:36:07+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\/\/kb.elipse.com.br\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"KB-28661: Sending e-mails without a driver in E3 using IIS (CDO) and PowerShell.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/kb.elipse.com.br\/#website\",\"url\":\"https:\/\/kb.elipse.com.br\/\",\"name\":\"Elipse Knowledgebase\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/kb.elipse.com.br\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\",\"name\":\"Elipse Software\",\"url\":\"https:\/\/kb.elipse.com.br\/\",\"sameAs\":[\"http:\/\/www.facebook.com\/elipsesoftware\"],\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png\",\"contentUrl\":\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png\",\"width\":161,\"height\":58,\"caption\":\"Elipse Software\"},\"image\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/aa880bd098677c1ae91fa708e17cdc12\",\"name\":\"Enrico Busnello Amorim\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/13943145ceed05bf229301fae63da878?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/13943145ceed05bf229301fae63da878?s=96&d=mm&r=g\",\"caption\":\"Enrico Busnello Amorim\"},\"url\":\"https:\/\/kb.elipse.com.br\/en\/author\/enrico\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"KB-28661: Sending e-mails without a driver in E3 using IIS (CDO) and PowerShell. - Elipse Knowledgebase","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:\/\/kb.elipse.com.br\/en\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/","og_locale":"en_US","og_type":"article","og_title":"[:pt]KB-28661: Sending e-mails without a driver using IIS and CDO.[:en]KB-28661: Sending e-mails without a driver in E3 using IIS (CDO) and PowerShell.[:] - Elipse Knowledgebase","og_description":"Question: On an application based in CDO-Collaboration Data Objects (tool developed by Microsoft to make it easier sending messages in applications)-, the IIS &#8211; Internet Information Services &#8211; is used&hellip;","og_url":"https:\/\/kb.elipse.com.br\/en\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/","og_site_name":"Elipse Knowledgebase","article_publisher":"http:\/\/www.facebook.com\/elipsesoftware","article_published_time":"2019-03-25T20:38:16+00:00","article_modified_time":"2026-03-30T18:36:07+00:00","author":"Enrico Busnello Amorim","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Enrico Busnello Amorim","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kb.elipse.com.br\/en\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/#article","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/en\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/"},"author":{"name":"Enrico Busnello Amorim","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/aa880bd098677c1ae91fa708e17cdc12"},"headline":"KB-28661: Sending e-mails without a driver in E3 using IIS (CDO) and PowerShell.","datePublished":"2019-03-25T20:38:16+00:00","dateModified":"2026-03-30T18:36:07+00:00","mainEntityOfPage":{"@id":"https:\/\/kb.elipse.com.br\/en\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/"},"wordCount":514,"commentCount":0,"publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"articleSection":["Scripts"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/kb.elipse.com.br\/en\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/kb.elipse.com.br\/en\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/","url":"https:\/\/kb.elipse.com.br\/en\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/","name":"[:pt]KB-28661: Sending e-mails without a driver using IIS and CDO.[:en]KB-28661: Sending e-mails without a driver in E3 using IIS (CDO) and PowerShell.[:] - Elipse Knowledgebase","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/#website"},"datePublished":"2019-03-25T20:38:16+00:00","dateModified":"2026-03-30T18:36:07+00:00","breadcrumb":{"@id":"https:\/\/kb.elipse.com.br\/en\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kb.elipse.com.br\/en\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/kb.elipse.com.br\/en\/kb28661-sending-emails-without-a-driver-using-iis-and-cdo\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/kb.elipse.com.br\/en\/"},{"@type":"ListItem","position":2,"name":"KB-28661: Sending e-mails without a driver in E3 using IIS (CDO) and PowerShell."}]},{"@type":"WebSite","@id":"https:\/\/kb.elipse.com.br\/#website","url":"https:\/\/kb.elipse.com.br\/","name":"Elipse Knowledgebase","description":"","publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/kb.elipse.com.br\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/kb.elipse.com.br\/#organization","name":"Elipse Software","url":"https:\/\/kb.elipse.com.br\/","sameAs":["http:\/\/www.facebook.com\/elipsesoftware"],"logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/","url":"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png","contentUrl":"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png","width":161,"height":58,"caption":"Elipse Software"},"image":{"@id":"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/aa880bd098677c1ae91fa708e17cdc12","name":"Enrico Busnello Amorim","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/13943145ceed05bf229301fae63da878?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/13943145ceed05bf229301fae63da878?s=96&d=mm&r=g","caption":"Enrico Busnello Amorim"},"url":"https:\/\/kb.elipse.com.br\/en\/author\/enrico\/"}]}},"_links":{"self":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/2150"}],"collection":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/users\/11"}],"replies":[{"embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/comments?post=2150"}],"version-history":[{"count":8,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/2150\/revisions"}],"predecessor-version":[{"id":17585,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/2150\/revisions\/17585"}],"wp:attachment":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/media?parent=2150"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/categories?post=2150"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/tags?post=2150"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}