<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Chart in e-mail body in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Chart-in-e-mail-body/m-p/1194172#M627758</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got it. I was using your text but the chart was on a different tab so when i ran it in the correct tab it worked just fine. Thanks for your help Frank. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Oct 2016 13:23:39 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-10-26T13:23:39Z</dc:date>
    <item>
      <title>Chart in e-mail body</title>
      <link>https://community.qlik.com/t5/QlikView/Chart-in-e-mail-body/m-p/1194169#M627755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys, i have a small piece of code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Sub Email_Test()&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;EmailBody = "HI"&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Subject = "test"&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Set vOlApp = CreateObject("Outlook.Application")&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Set vMessage = vOlApp.CreateItem(olMailItem)&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;vMessage.Subject = Subject&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;vMessage.To = Email_Recipient&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;vMessage.HTMLBody = EmailBody&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;vMessage.Display&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;End Sub&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If i have a chart (CH11) - can someone tell me how to drop the chart into the body of the e-mail? I can use HTML to create a link to a file but i need to copy and paste the chart into the actual body of the message. Can anyone help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 08:54:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Chart-in-e-mail-body/m-p/1194169#M627755</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-26T08:54:58Z</dc:date>
    </item>
    <item>
      <title>Re: Chart in e-mail body</title>
      <link>https://community.qlik.com/t5/QlikView/Chart-in-e-mail-body/m-p/1194170#M627756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try like this:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14774775450147204 jive_text_macro" jivemacro_uid="_14774775450147204"&gt;
&lt;P&gt;Sub Export2Mail&lt;/P&gt;
&lt;P&gt;Set myApp = CreateObject ("Outlook.Application")&lt;/P&gt;
&lt;P&gt;Set myMessage = myApp.CreateItem(olMailItem)&lt;/P&gt;
&lt;P&gt;myMessage.BodyFormat = 2 'HTMLFormat&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;myMessage.To = "&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:Name@Provider.com"&gt;Name@Provider.com&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;myMessage.Subject = "Qlikview Email "&lt;/P&gt;
&lt;P&gt;myMessage.Attachments.Add("C:\Users\Admin\Desktop\MAKRO.txt")&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'If you want to add a file&lt;/P&gt;
&lt;P&gt;Set myInspector = myMessage.GetInspector 'add signature to e-mail&lt;/P&gt;
&lt;P&gt;Set myDoc = myInspector.WordEditor&lt;/P&gt;
&lt;P&gt;ActiveDocument.GetSheetObject("CH01").CopyBitmapToClipboard&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' adapt your Chart ID here&lt;/P&gt;
&lt;P&gt;myDoc.Range(0,0).PasteSpecial False, False, 0, False, 5&lt;/P&gt;
&lt;P&gt;myInspector.WordEditor.Content.InsertBefore chr(13)&lt;/P&gt;
&lt;P&gt;myInspector.WordEditor.Content.InsertBefore chr(13)&lt;/P&gt;
&lt;P&gt;myInspector.WordEditor.Content.InsertBefore "Hello, " &amp;amp; chr(13) &amp;amp; chr(13) &amp;amp; "Your Message here"&lt;/P&gt;
&lt;P&gt;myMessage.Display&lt;/P&gt;
&lt;P&gt;Set myMessage = Nothing&lt;/P&gt;
&lt;P&gt;Set myApp = Nothing&lt;/P&gt;
&lt;P&gt;Set myInspector = Nothing&lt;/P&gt;
&lt;P&gt;Set myDoc = Nothing&lt;/P&gt;
&lt;P&gt;End sub&lt;/P&gt;



&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 10:26:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Chart-in-e-mail-body/m-p/1194170#M627756</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2016-10-26T10:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: Chart in e-mail body</title>
      <link>https://community.qlik.com/t5/QlikView/Chart-in-e-mail-body/m-p/1194171#M627757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make sure that you have following settings in module activated:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Unbenannt.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/142007_Unbenannt.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 13:22:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Chart-in-e-mail-body/m-p/1194171#M627757</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2016-10-26T13:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: Chart in e-mail body</title>
      <link>https://community.qlik.com/t5/QlikView/Chart-in-e-mail-body/m-p/1194172#M627758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got it. I was using your text but the chart was on a different tab so when i ran it in the correct tab it worked just fine. Thanks for your help Frank. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2016 13:23:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Chart-in-e-mail-body/m-p/1194172#M627758</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-26T13:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: Chart in e-mail body</title>
      <link>https://community.qlik.com/t5/QlikView/Chart-in-e-mail-body/m-p/1194173#M627759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The code doesn't work for me. It throws an error - Object required: 'myDoc'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess its not able to create object through myInspector.WordEditor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please help!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2017 10:32:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Chart-in-e-mail-body/m-p/1194173#M627759</guid>
      <dc:creator />
      <dc:date>2017-06-13T10:32:45Z</dc:date>
    </item>
  </channel>
</rss>

