<?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 Macro for sending mail through Gmail in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Macro-for-sending-mail-through-Gmail/m-p/231676#M83383</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Miguel &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IT worked it out, I much thanks for your Assistance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Mar 2012 16:41:33 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-03-12T16:41:33Z</dc:date>
    <item>
      <title>Macro for sending mail through Gmail</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-for-sending-mail-through-Gmail/m-p/231670#M83377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&lt;B&gt;I am using this Macro for sending Mail through Gmail Account. But there is some issues in this.It get stopped at objmail.send.&lt;/B&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;Can anyone help me in this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dim objEmail&lt;BR /&gt;&lt;BR /&gt; Const cdoSendUsingPort = 2&lt;BR /&gt;&lt;BR /&gt; Const cdoAnonymous = 0&lt;BR /&gt;&lt;BR /&gt; Const cdoBasic = 1&lt;BR /&gt;&lt;BR /&gt; Const cdoNTLM = 2&lt;BR /&gt;&lt;BR /&gt; Const SMTPServer = "smtp.gmail.com"&lt;BR /&gt;&lt;BR /&gt; Const SMTPPort = 465&lt;BR /&gt;&lt;BR /&gt; Const SMTPTimeout = 60&lt;BR /&gt;&lt;BR /&gt; Const user = "mygmailaccount"&lt;BR /&gt;&lt;BR /&gt; Const psw = "mypassword"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; Set objEmail = CreateObject("CDO.Message")&lt;BR /&gt;&lt;BR /&gt;Set objConf = objEmail.Configuration&lt;BR /&gt;&lt;BR /&gt;Set objFlds = objConf.Fields&lt;BR /&gt;&lt;BR /&gt;With objFlds&lt;BR /&gt;&lt;BR /&gt;'---------------------------------------------------------------------&lt;BR /&gt;&lt;BR /&gt; ' SMTP server details&lt;BR /&gt;&lt;BR /&gt; .Item("schemas.microsoft.com/.../sendusing") = cdoSendUsingPort&lt;BR /&gt;&lt;BR /&gt; .Item("schemas.microsoft.com/.../smtpserver") = SMTPServer&lt;BR /&gt;&lt;BR /&gt; .Item("schemas.microsoft.com/.../smtpauthenticate") = codBasic&lt;BR /&gt;&lt;BR /&gt; .Item("schemas.microsoft.com/.../sendpassword")= psw&lt;BR /&gt;&lt;BR /&gt; .Item("schemas.microsoft.com/.../sendusername")= user&lt;BR /&gt;&lt;BR /&gt;.Item("schemas.microsoft.com/.../smtpserverport") = SMTPPort&lt;BR /&gt;&lt;BR /&gt;.Item("schemas.microsoft.com/.../smtpusessl") = True&lt;BR /&gt;&lt;BR /&gt; .Item("schemas.microsoft.com/.../smtpconnectiontimeout") = SMTPTimeout&lt;BR /&gt;&lt;BR /&gt; .Update&lt;BR /&gt;&lt;BR /&gt;'---------------------------------------------------------------------&lt;BR /&gt;&lt;BR /&gt;End With&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; objEmail.To = "toaccountemailid"&lt;BR /&gt;&lt;BR /&gt;objEmail.From = "fromaccountemailid"&lt;BR /&gt;&lt;BR /&gt;objEmail.Subject = "test"&lt;BR /&gt;&lt;BR /&gt;objEmail.TextBody = "message de test"&lt;BR /&gt;&lt;BR /&gt;objEmail.Send&lt;BR /&gt;&lt;BR /&gt;Set objFlds = Nothing&lt;BR /&gt;&lt;BR /&gt;Set objConf = Nothing&lt;BR /&gt;&lt;BR /&gt;Set objEmail = Nothing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Dec 2010 11:31:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-for-sending-mail-through-Gmail/m-p/231670#M83377</guid>
      <dc:creator />
      <dc:date>2010-12-23T11:31:33Z</dc:date>
    </item>
    <item>
      <title>Macro for sending mail through Gmail</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-for-sending-mail-through-Gmail/m-p/231671#M83378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gmail uses SSL, I believe you would need something like STUNNEL to make it work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Dec 2010 23:35:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-for-sending-mail-through-Gmail/m-p/231671#M83378</guid>
      <dc:creator>danielrozental</dc:creator>
      <dc:date>2010-12-27T23:35:29Z</dc:date>
    </item>
    <item>
      <title>Macro for sending mail through Gmail</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-for-sending-mail-through-Gmail/m-p/231672#M83379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have the same problem &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Oct 2011 09:38:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-for-sending-mail-through-Gmail/m-p/231672#M83379</guid>
      <dc:creator />
      <dc:date>2011-10-27T09:38:16Z</dc:date>
    </item>
    <item>
      <title>Macro for sending mail through Gmail</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-for-sending-mail-through-Gmail/m-p/231673#M83380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;anyone can help us ,I am too facing the same issue &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2012 14:07:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-for-sending-mail-through-Gmail/m-p/231673#M83380</guid>
      <dc:creator />
      <dc:date>2012-03-12T14:07:58Z</dc:date>
    </item>
    <item>
      <title>Macro for sending mail through Gmail</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-for-sending-mail-through-Gmail/m-p/231674#M83381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just a thought:&lt;/P&gt;&lt;P&gt; If you set up outlook for the gmail accoount, you should be able to use code for sending mail with outlook.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2012 14:27:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-for-sending-mail-through-Gmail/m-p/231674#M83381</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2012-03-12T14:27:10Z</dc:date>
    </item>
    <item>
      <title>Macro for sending mail through Gmail</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-for-sending-mail-through-Gmail/m-p/231675#M83382</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;Please check the code in &lt;A _jive_internal="true" href="https://community.qlik.com/thread/25067"&gt;this thread&lt;/A&gt;, that has been tested and works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2012 14:32:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-for-sending-mail-through-Gmail/m-p/231675#M83382</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2012-03-12T14:32:47Z</dc:date>
    </item>
    <item>
      <title>Macro for sending mail through Gmail</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-for-sending-mail-through-Gmail/m-p/231676#M83383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Miguel &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IT worked it out, I much thanks for your Assistance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2012 16:41:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-for-sending-mail-through-Gmail/m-p/231676#M83383</guid>
      <dc:creator />
      <dc:date>2012-03-12T16:41:33Z</dc:date>
    </item>
  </channel>
</rss>

