<?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: Microsoft Outlook Interface in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Microsoft-Outlook-Interface/m-p/731986#M1057790</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the information Marco.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Sep 2014 21:47:47 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-09-30T21:47:47Z</dc:date>
    <item>
      <title>Microsoft Outlook Interface</title>
      <link>https://community.qlik.com/t5/QlikView/Microsoft-Outlook-Interface/m-p/731982#M1057786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there an interface in QlikView to Microsoft Outlook?&amp;nbsp; Does the ability to email a QlikView chart through Outlook exist?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ed Torasso&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2014 20:44:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Microsoft-Outlook-Interface/m-p/731982#M1057786</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-30T20:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: Microsoft Outlook Interface</title>
      <link>https://community.qlik.com/t5/QlikView/Microsoft-Outlook-Interface/m-p/731983#M1057787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you want to send mail only=?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can do this using macro&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see this example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUB SendMail&lt;/P&gt;&lt;P&gt;Dim objEmail&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Const cdoSendUsingPort = 2 ' Send the message using SMTP&lt;/P&gt;&lt;P&gt;Const cdoBasicAuth = 1 ' Clear-text authentication&lt;/P&gt;&lt;P&gt;Const cdoTimeout = 60 ' Timeout for SMTP in seconds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; mailServer = "&lt;SPAN class="skimlinks-unlinked" style="font-family: inherit; font-size: inherit; font-style: inherit; font-weight: inherit;"&gt;smtp.gmail.com&lt;/SPAN&gt;"&lt;/P&gt;&lt;P&gt;&amp;nbsp; SMTPport = 465&lt;/P&gt;&lt;P&gt;&amp;nbsp; mailusername = "MyAccount@&lt;SPAN class="skimlinks-unlinked" style="font-family: inherit; font-size: inherit; font-style: inherit; font-weight: inherit;"&gt;gmail.com&lt;/SPAN&gt;"&lt;/P&gt;&lt;P&gt;&amp;nbsp; mailpassword = "MyPassword"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; mailto = "destination@&lt;SPAN class="skimlinks-unlinked" style="font-family: inherit; font-size: inherit; font-style: inherit; font-weight: inherit;"&gt;company.com&lt;/SPAN&gt;" &lt;/P&gt;&lt;P&gt;&amp;nbsp; mailSubject = "Subject line" &lt;/P&gt;&lt;P&gt;&amp;nbsp; mailBody = "This is the email body" &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set objEmail = CreateObject("CDO.Message")&lt;/P&gt;&lt;P&gt;Set objConf = objEmail.Configuration&lt;/P&gt;&lt;P&gt;Set objFlds = objConf.Fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With objFlds&lt;/P&gt;&lt;P&gt;&amp;nbsp; .Item("&lt;SPAN class="skimlinks-unlinked" style="font-family: inherit; font-size: inherit; font-style: inherit; font-weight: inherit;"&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/sendusing"&gt;http://schemas.microsoft.com/cdo/configuration/sendusing&lt;/A&gt;&lt;/SPAN&gt;") = cdoSendUsingPort&lt;/P&gt;&lt;P&gt;&amp;nbsp; .Item("&lt;SPAN class="skimlinks-unlinked" style="font-family: inherit; font-size: inherit; font-style: inherit; font-weight: inherit;"&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpserver"&gt;http://schemas.microsoft.com/cdo/configuration/smtpserver&lt;/A&gt;&lt;/SPAN&gt;") = mailServer&lt;/P&gt;&lt;P&gt;.Item("&lt;SPAN class="skimlinks-unlinked" style="font-family: inherit; font-size: inherit; font-style: inherit; font-weight: inherit;"&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpserverport"&gt;http://schemas.microsoft.com/cdo/configuration/smtpserverport&lt;/A&gt;&lt;/SPAN&gt;") = SMTPport&lt;/P&gt;&lt;P&gt;.Item("&lt;SPAN class="skimlinks-unlinked" style="font-family: inherit; font-size: inherit; font-style: inherit; font-weight: inherit;"&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpusessl"&gt;http://schemas.microsoft.com/cdo/configuration/smtpusessl&lt;/A&gt;&lt;/SPAN&gt;") = True&lt;/P&gt;&lt;P&gt;&amp;nbsp; .Item("&lt;SPAN class="skimlinks-unlinked" style="font-family: inherit; font-size: inherit; font-style: inherit; font-weight: inherit;"&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout"&gt;http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout&lt;/A&gt;&lt;/SPAN&gt;") = cdoTimeout&lt;/P&gt;&lt;P&gt;.Item("&lt;SPAN class="skimlinks-unlinked" style="font-family: inherit; font-size: inherit; font-style: inherit; font-weight: inherit;"&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpauthenticate"&gt;http://schemas.microsoft.com/cdo/configuration/smtpauthenticate&lt;/A&gt;&lt;/SPAN&gt;") = cdoBasicAuth&lt;/P&gt;&lt;P&gt;.Item("&lt;SPAN class="skimlinks-unlinked" style="font-family: inherit; font-size: inherit; font-style: inherit; font-weight: inherit;"&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/sendusername"&gt;http://schemas.microsoft.com/cdo/configuration/sendusername&lt;/A&gt;&lt;/SPAN&gt;") = mailusername&lt;/P&gt;&lt;P&gt;.Item("&lt;SPAN class="skimlinks-unlinked" style="font-family: inherit; font-size: inherit; font-style: inherit; font-weight: inherit;"&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/sendpassword"&gt;http://schemas.microsoft.com/cdo/configuration/sendpassword&lt;/A&gt;&lt;/SPAN&gt;") = mailpassword&lt;/P&gt;&lt;P&gt;&amp;nbsp; .Update&lt;/P&gt;&lt;P&gt;End With&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="skimlinks-unlinked" style="font-family: inherit; font-size: inherit; font-style: inherit; font-weight: inherit;"&gt;objEmail.To&lt;/SPAN&gt; = mailto&lt;/P&gt;&lt;P&gt;&lt;SPAN class="skimlinks-unlinked" style="font-family: inherit; font-size: inherit; font-style: inherit; font-weight: inherit;"&gt;objEmail.From&lt;/SPAN&gt; = mailusername&lt;/P&gt;&lt;P&gt;objEmail.Subject = mailSubject&lt;/P&gt;&lt;P&gt;objEmail.TextBody = mailBody&lt;/P&gt;&lt;P&gt;objEmail.AddAttachment "C:\&lt;SPAN class="skimlinks-unlinked" style="font-family: inherit; font-size: inherit; font-style: inherit; font-weight: inherit;"&gt;report.pdf&lt;/SPAN&gt;"&lt;/P&gt;&lt;P&gt;&lt;SPAN class="skimlinks-unlinked" style="font-family: inherit; font-size: inherit; font-style: inherit; font-weight: inherit;"&gt;objEmail.Send&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set objFlds = Nothing&lt;/P&gt;&lt;P&gt;Set objConf = Nothing&lt;/P&gt;&lt;P&gt;Set objEmail = Nothing&lt;/P&gt;&lt;P&gt;END SUB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2014 21:16:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Microsoft-Outlook-Interface/m-p/731983#M1057787</guid>
      <dc:creator>fkeuroglian</dc:creator>
      <dc:date>2014-09-30T21:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: Microsoft Outlook Interface</title>
      <link>https://community.qlik.com/t5/QlikView/Microsoft-Outlook-Interface/m-p/731984#M1057788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can email QV reports from within QlikView Publisher / PDF report distribution without the need for an email client connection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_135882_Pic1.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/68043_QlikCommunity_Thread_135882_Pic1.JPG.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2014 21:28:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Microsoft-Outlook-Interface/m-p/731984#M1057788</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-09-30T21:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: Microsoft Outlook Interface</title>
      <link>https://community.qlik.com/t5/QlikView/Microsoft-Outlook-Interface/m-p/731985#M1057789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe this helps also:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://wiki.qvsource.com/MailBox-Connector-For-QlikView.ashx" title="http://wiki.qvsource.com/MailBox-Connector-For-QlikView.ashx"&gt;http://wiki.qvsource.com/MailBox-Connector-For-QlikView.ashx&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2014 21:30:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Microsoft-Outlook-Interface/m-p/731985#M1057789</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-09-30T21:30:32Z</dc:date>
    </item>
    <item>
      <title>Re: Microsoft Outlook Interface</title>
      <link>https://community.qlik.com/t5/QlikView/Microsoft-Outlook-Interface/m-p/731986#M1057790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the information Marco.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2014 21:47:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Microsoft-Outlook-Interface/m-p/731986#M1057790</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-30T21:47:47Z</dc:date>
    </item>
    <item>
      <title>Re: Microsoft Outlook Interface</title>
      <link>https://community.qlik.com/t5/QlikView/Microsoft-Outlook-Interface/m-p/731987#M1057791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;maybe it helps, that there is also an MailBox Connector for QlikView available on QVsource.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_135xxx_Pic1.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/68044_QlikCommunity_Thread_135xxx_Pic1.JPG.jpg" style="width: 620px; height: 445px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2014 21:53:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Microsoft-Outlook-Interface/m-p/731987#M1057791</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-09-30T21:53:44Z</dc:date>
    </item>
  </channel>
</rss>

