<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to Send an Outlook Email with VBA (Macros)</title>
	<atom:link href="http://www.answermysearches.com/how-to-send-an-outlook-email-with-vba-macros/340/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.answermysearches.com/how-to-send-an-outlook-email-with-vba-macros/340/</link>
	<description>Answers to everything I search for, every day</description>
	<lastBuildDate>Tue, 22 Nov 2011 08:57:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: DJ Retz</title>
		<link>http://www.answermysearches.com/how-to-send-an-outlook-email-with-vba-macros/340/comment-page-1/#comment-51553</link>
		<dc:creator>DJ Retz</dc:creator>
		<pubDate>Thu, 24 Apr 2008 05:38:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.answermysearches.com/how-to-send-an-outlook-email-with-vba-macros/340/#comment-51553</guid>
		<description>May I seek your help too.  A macro in Excel constructs and displays the email leaving it for the operator to make final edits and either send, save or abort the email.  I want to have the Excel macro wait and then record, on a sheet, which action occurred.

Regards

DJ Retz
Australia</description>
		<content:encoded><![CDATA[<p>May I seek your help too.  A macro in Excel constructs and displays the email leaving it for the operator to make final edits and either send, save or abort the email.  I want to have the Excel macro wait and then record, on a sheet, which action occurred.</p>
<p>Regards</p>
<p>DJ Retz<br />
Australia</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Sanders</title>
		<link>http://www.answermysearches.com/how-to-send-an-outlook-email-with-vba-macros/340/comment-page-1/#comment-46255</link>
		<dc:creator>David Sanders</dc:creator>
		<pubDate>Thu, 06 Mar 2008 13:09:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.answermysearches.com/how-to-send-an-outlook-email-with-vba-macros/340/#comment-46255</guid>
		<description>Does anyone know how to leave a signature at the end of an email using a macro.

So my body would be &quot;hi, give me a call&quot;

How in code do I write a signature to the email

David Sanders
212 west avenue
212-555-1212</description>
		<content:encoded><![CDATA[<p>Does anyone know how to leave a signature at the end of an email using a macro.</p>
<p>So my body would be &#8220;hi, give me a call&#8221;</p>
<p>How in code do I write a signature to the email</p>
<p>David Sanders<br />
212 west avenue<br />
212-555-1212</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: john davis</title>
		<link>http://www.answermysearches.com/how-to-send-an-outlook-email-with-vba-macros/340/comment-page-1/#comment-46161</link>
		<dc:creator>john davis</dc:creator>
		<pubDate>Wed, 05 Mar 2008 13:15:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.answermysearches.com/how-to-send-an-outlook-email-with-vba-macros/340/#comment-46161</guid>
		<description>How do I add an email signature to the bottom of this.

For example:

John Davis, CPA 
1010 west end.
New York, NY. 

please help</description>
		<content:encoded><![CDATA[<p>How do I add an email signature to the bottom of this.</p>
<p>For example:</p>
<p>John Davis, CPA<br />
1010 west end.<br />
New York, NY. </p>
<p>please help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jimmy Pena</title>
		<link>http://www.answermysearches.com/how-to-send-an-outlook-email-with-vba-macros/340/comment-page-1/#comment-43688</link>
		<dc:creator>Jimmy Pena</dc:creator>
		<pubDate>Wed, 06 Feb 2008 00:31:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.answermysearches.com/how-to-send-an-outlook-email-with-vba-macros/340/#comment-43688</guid>
		<description>Check out the ReminderFire event. It executes right before the reminder is executed. For example, this code would go in the ThisOutlookSession module of Outlook.

Private WithEvents emailtask As Outlook.Reminders

Private Sub Application_Startup()
Dim objApp As Application
Dim objNS As NameSpace

Set objNS = Application.GetNamespace(&quot;MAPI&quot;)

Set emailtask = objNS.GetDefaultFolder(olFolderTasks)

End Sub

Private Sub emailtask_ReminderFire(ByVal ReminderObject As Reminder)

    Dim objApp As Outlook.Application
    Dim objMail As Outlook.MailItem
    Set olApp = Outlook.Application
    Set objMail = olApp.CreateItem(olMailItem)
    With objMail
        .BodyFormat = olFormatPlain
        .Subject = &quot;Hi buddy&quot;
        .Body = &quot;Whats up&quot; &amp; Chr(13) &amp; Chr(10) &amp; &quot;Greg&quot;
        .To = &quot;goofus@doofus.com&quot;
        .Send
    End With

End Sub</description>
		<content:encoded><![CDATA[<p>Check out the ReminderFire event. It executes right before the reminder is executed. For example, this code would go in the ThisOutlookSession module of Outlook.</p>
<p>Private WithEvents emailtask As Outlook.Reminders</p>
<p>Private Sub Application_Startup()<br />
Dim objApp As Application<br />
Dim objNS As NameSpace</p>
<p>Set objNS = Application.GetNamespace(&#8220;MAPI&#8221;)</p>
<p>Set emailtask = objNS.GetDefaultFolder(olFolderTasks)</p>
<p>End Sub</p>
<p>Private Sub emailtask_ReminderFire(ByVal ReminderObject As Reminder)</p>
<p>    Dim objApp As Outlook.Application<br />
    Dim objMail As Outlook.MailItem<br />
    Set olApp = Outlook.Application<br />
    Set objMail = olApp.CreateItem(olMailItem)<br />
    With objMail<br />
        .BodyFormat = olFormatPlain<br />
        .Subject = &#8220;Hi buddy&#8221;<br />
        .Body = &#8220;Whats up&#8221; &amp; Chr(13) &amp; Chr(10) &amp; &#8220;Greg&#8221;<br />
        .To = &#8220;goofus@doofus.com&#8221;<br />
        .Send<br />
    End With</p>
<p>End Sub</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wayne Stevens</title>
		<link>http://www.answermysearches.com/how-to-send-an-outlook-email-with-vba-macros/340/comment-page-1/#comment-43661</link>
		<dc:creator>Wayne Stevens</dc:creator>
		<pubDate>Tue, 05 Feb 2008 19:53:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.answermysearches.com/how-to-send-an-outlook-email-with-vba-macros/340/#comment-43661</guid>
		<description>If I wanted to run the macro everyday via a scheduled task, how would I do that?</description>
		<content:encoded><![CDATA[<p>If I wanted to run the macro everyday via a scheduled task, how would I do that?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

