﻿<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>Newest KB Articles in Sending Email from Website</title>
    <description>Recent additions to the Knowledge Base from Sineris</description>
    <link>http://support.sineris.com/KB/c5/sending-email-from-website.aspx</link>
    <dt>Sun, 05 Sep 2010 09:14:54 GMT</dt>
    <generator>SmarterTrack Professional 3.6.3229</generator>
    <item>
      <title>SMTP Server and Port Settings For Sending Email</title>
      <link>http://support.sineris.com/KB/a12/smtp-server-and-port-settings-for-sending-email.aspx</link>
      <pubDate>Mon, 01 Dec 2008 02:26:52 GMT</pubDate>
      <guid isPermaLink="false">kbarticle12</guid>
      <description>SMTP Server and Port information for sending Email through code</description>
    </item>
    <item>
      <title>How to: Send email with w3JMail</title>
      <link>http://support.sineris.com/KB/a11/how-to-send-email-with-w3jmail.aspx</link>
      <pubDate>Mon, 01 Dec 2008 02:25:51 GMT</pubDate>
      <guid isPermaLink="false">kbarticle11</guid>
      <description>Code sample showing use of W3JMail Component for sending Email</description>
    </item>
    <item>
      <title>How to: Send email with CDO</title>
      <link>http://support.sineris.com/KB/a10/how-to-send-email-with-cdo.aspx</link>
      <pubDate>Mon, 01 Dec 2008 02:15:04 GMT</pubDate>
      <guid isPermaLink="false">kbarticle10</guid>
      <description>&lt;DIV class=PreviewContent id=Scrollable style="WIDTH: 1071px; HEIGHT: 309px"&gt;
&lt;DIV class=DoNotPadTopAndBottom id=ctl00_PTAB&gt;
&lt;DIV class=PreviewContentInner&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;CDO (Collaboration Data Objects) is a&amp;nbsp;component that can be used to send email in your ASP&amp;nbsp;websites.&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial&gt;&lt;SPAN style="TEXT-DECORATION: underline"&gt;&lt;STRONG&gt;Examples of using CDO&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;STRONG&gt;Sending a text e-mail:&lt;/STRONG&gt; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&amp;lt;%&lt;BR&gt;
Set myMail=CreateObject("CDO.Message")&lt;BR&gt;
myMail.Subject="Sending email with CDO"&lt;BR&gt;
myMail.From="mymail@mydomain.com"&lt;BR&gt;
myMail.To="someone@somedomain.com"&lt;BR&gt;
myMail.TextBody="This is a message."&lt;BR&gt;
myMail.Send&lt;BR&gt;
set myMail=nothing&lt;BR&gt;
%&amp;gt; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;STRONG&gt;Sending a text e-mail with Bcc and CC fields:&lt;/STRONG&gt; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&amp;lt;%&lt;BR&gt;
Set myMail=CreateObject("CDO.Message")&lt;BR&gt;
myMail.Subject="Sending email with CDO"&lt;BR&gt;
myMail.From="mymail@mydomain.com"&lt;BR&gt;
myMail.To="someone@somedomain.com"&lt;BR&gt;
myMail.Bcc="someoneelse@somedomain.com"&lt;BR&gt;
myMail.Cc="someoneelse2@somedomain.com"&lt;BR&gt;
myMail.TextBody="This is a message."&lt;BR&gt;
myMail.Send&lt;BR&gt;
set myMail=nothing&lt;BR&gt;
%&amp;gt; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;STRONG&gt;Sending an HTML e-mail:&lt;/STRONG&gt; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&amp;lt;%&lt;BR&gt;
Set myMail=CreateObject("CDO.Message")&lt;BR&gt;
myMail.Subject="Sending email with CDO"&lt;BR&gt;
myMail.From="mymail@mydomain.com"&lt;BR&gt;
myMail.To="someone@somedomain.com"&lt;BR&gt;
myMail.HTMLBody = "&amp;lt;h1&amp;gt;This is a message.&amp;lt;/h1&amp;gt;" &lt;BR&gt;
myMail.Send&lt;BR&gt;
set myMail=nothing&lt;BR&gt;
%&amp;gt; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;STRONG&gt;Sending an HTML e-mail that sends a webpage from a website:&lt;/STRONG&gt; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&amp;lt;%&lt;BR&gt;
Set myMail=CreateObject("CDO.Message")&lt;BR&gt;
myMail.Subject="Sending email with CDO"&lt;BR&gt;
myMail.From="mymail@mydomain.com"&lt;BR&gt;
myMail.To="someone@somedomain.com"&lt;BR&gt;
myMail.CreateMHTMLBody "http://www.w3schools.com/asp/" &lt;BR&gt;
myMail.Send&lt;BR&gt;
set myMail=nothing&lt;BR&gt;
%&amp;gt; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;STRONG&gt;Sending an HTML e-mail that sends a webpage from a file on your computer:&lt;/STRONG&gt; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&amp;lt;%&lt;BR&gt;
Set myMail=CreateObject("CDO.Message")&lt;BR&gt;
myMail.Subject="Sending email with CDO"&lt;BR&gt;
myMail.From="mymail@mydomain.com"&lt;BR&gt;
myMail.To="someone@somedomain.com"&lt;BR&gt;
myMail.CreateMHTMLBody "file://c:/mydocuments/test.htm" &lt;BR&gt;
myMail.Send&lt;BR&gt;
set myMail=nothing&lt;BR&gt;
%&amp;gt; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&lt;STRONG&gt;Sending a text e-mail with an Attachment:&lt;/STRONG&gt; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Arial size=2&gt;&amp;lt;%&lt;BR&gt;
Set myMail=CreateObject("CDO.Message")&lt;BR&gt;
myMail.Subject="Sending email with CDO"&lt;BR&gt;
myMail.From="mymail@mydomain.com"&lt;BR&gt;
myMail.To="someone@somedomain.com"&lt;BR&gt;
myMail.TextBody="This is a message."&lt;BR&gt;
myMail.AddAttachment "c:\mydocuments\test.txt"&lt;BR&gt;
myMail.Send&lt;BR&gt;
set myMail=nothing&lt;BR&gt;
%&amp;gt; &lt;/FONT&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
    </item>
    <item>
      <title>How to: Send email with ASPEmail</title>
      <link>http://support.sineris.com/KB/a9/how-to-send-email-with-aspemail.aspx</link>
      <pubDate>Mon, 01 Dec 2008 01:47:38 GMT</pubDate>
      <guid isPermaLink="false">kbarticle9</guid>
      <description>Code sample showing how to send Email using the AspEmail component for ASP</description>
    </item>
    <item>
      <title>Available Email Components for ASP</title>
      <link>http://support.sineris.com/KB/a8/available-email-components-for-asp.aspx</link>
      <pubDate>Mon, 01 Dec 2008 01:46:25 GMT</pubDate>
      <guid isPermaLink="false">kbarticle8</guid>
      <description>This article outlines the email components available for sending emails with ASP code.</description>
    </item>
  </channel>
</rss>