{"id":232,"date":"2016-07-18T16:40:37","date_gmt":"2016-07-18T20:40:37","guid":{"rendered":"http:\/\/regina-whipp.com\/blog\/?p=232"},"modified":"2016-07-04T16:40:58","modified_gmt":"2016-07-04T20:40:58","slug":"sendemail","status":"publish","type":"post","link":"https:\/\/regina-whipp.com\/blog\/?p=232","title":{"rendered":"Send eMail with Default (Outlook) Signature&#8230;"},"content":{"rendered":"<p><strong>Question<\/strong>: How do I send eMail and include my Outlook signature?<\/p>\n<p><strong>Answer<\/strong>:<br \/>\nCreate a Module, name it anything you like except the name of the Function.<\/p>\n<p>At the top of your Module under\u2026<\/p>\n<p>Option Compare Database<br \/>\nOption Explicit<\/p>\n<p>\u2026place<\/p>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">Function streMailWithOutlookSignature()\r\n'Works in Office 2000-2016\r\n    \r\n    Dim OutApp As Object\r\n    Dim OutMail As Object\r\n    Dim strbody As String\r\n\r\n    Set OutApp = CreateObject(&quot;Outlook.Application&quot;)\r\n    Set OutMail = OutApp.CreateItem(0)\r\n\r\n    strbody = &quot;&quot;\r\n\r\n    On Error Resume Next\r\n\r\n    With OutMail\r\n        .Display\r\n        'Sets the From\r\n        .To = &quot;Fill in an eMail Address&quot;\r\n        'To use a Distribution List put the name of the list on the *To* line\r\n        '.To = &quot;Name of Distribution List goes here&quot;\r\n        .CC = &quot;&quot;\r\n        .BCC = &quot;&quot;\r\n        .Subject = &quot;This is the Subject line test&quot;\r\n        .HTMLBody = strbody &amp; &quot;\r\n&quot; &amp; .HTMLBody\r\n        'Stopped from automatically sending\r\n        '.Send\r\n    End With\r\n\r\n    On Error GoTo 0\r\n    Set OutMail = Nothing\r\n    Set OutApp = Nothing\r\n\r\nEnd Function\r\n<\/pre>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_232\" class=\"pvc_stats all  \" data-element-id=\"232\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/regina-whipp.com\/blog\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Question: How do I send eMail and include my Outlook signature?<\/p>\n<p>Answer: Create a Module, name it anything you like except the name of the Function.<\/p>\n<p>At the top of your Module under\u2026<\/p>\n<p>Option Compare Database Option Explicit<\/p>\n<p>\u2026place<\/p>\n<p> Function streMailWithOutlookSignature() &#8216;Works in Office 2000-2016 Dim OutApp As Object Dim OutMail As Object Dim strbody [&#8230;]<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_232\" class=\"pvc_stats all  \" data-element-id=\"232\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/regina-whipp.com\/blog\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[64,76,81,21],"class_list":["post-232","post","type-post","status-publish","format-standard","hentry","category-access-tips","tag-access-tips","tag-email","tag-outlook","tag-vba","odd"],"_links":{"self":[{"href":"https:\/\/regina-whipp.com\/blog\/index.php?rest_route=\/wp\/v2\/posts\/232","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/regina-whipp.com\/blog\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/regina-whipp.com\/blog\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/regina-whipp.com\/blog\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/regina-whipp.com\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=232"}],"version-history":[{"count":4,"href":"https:\/\/regina-whipp.com\/blog\/index.php?rest_route=\/wp\/v2\/posts\/232\/revisions"}],"predecessor-version":[{"id":1242,"href":"https:\/\/regina-whipp.com\/blog\/index.php?rest_route=\/wp\/v2\/posts\/232\/revisions\/1242"}],"wp:attachment":[{"href":"https:\/\/regina-whipp.com\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=232"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/regina-whipp.com\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=232"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/regina-whipp.com\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=232"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}