<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ASP Starter Kit &#187; CDOSYS</title>
	<atom:link href="http://aspstarterkit.com/index.php/tag/cdosys/feed/" rel="self" type="application/rss+xml" />
	<link>http://aspstarterkit.com</link>
	<description>Helping get your ASP Starter Kit online</description>
	<lastBuildDate>Wed, 14 Mar 2012 00:07:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Using CDOSYS to Send Email with GoDaddy</title>
		<link>http://aspstarterkit.com/index.php/getting-started/using-cdosys-to-send-email-with-godaddy/</link>
		<comments>http://aspstarterkit.com/index.php/getting-started/using-cdosys-to-send-email-with-godaddy/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 05:08:40 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[CDOSYS]]></category>
		<category><![CDATA[GoDaddy]]></category>

		<guid isPermaLink="false">http://aspstarterkit.com/?p=25</guid>
		<description><![CDATA[CDOSYS is part of the System.Web.Mail namespace and is installed by default on Windows 2000 and Windows XP platforms. It replaces CDONTS for sending SMTP email messages and can be used with GoDaddy IIS 6 and IIS 7 Windows hosting accounts. The following code sample demonstrates how to create, format, and send email with GoDaddy. [...]]]></description>
			<content:encoded><![CDATA[<p>CDOSYS is part of the System.Web.Mail namespace and is installed by default on Windows 2000 and Windows XP platforms. It replaces CDONTS for sending SMTP email messages and can be used with GoDaddy IIS 6 and IIS 7 Windows hosting accounts. The following code sample demonstrates how to create, format, and send email with GoDaddy.</p>
<p>The server &#8220;relay-hosting.secureserver.net&#8221; is used to send email from your GoDaddy hosted domain. You must populate the SmtpMail object&#8217;s SmtpServer property with this value. GoDaddy&#8217;s hosting servers allow for email attachments up to 30 MB.</p>
<pre name="code" class="c#:collapse">

// language -- C#

// import namespace

using System.Web.Mail;

private void SendEmail()

{

const string SERVER = "relay-hosting.secureserver.net";

MailMessage oMail = new System.Web.Mail.MailMessage();

oMail.From = "emailaddress@domainname";

oMail.To = "emailaddress@domainname";

oMail.Subject = "Test email subject";

oMail.BodyFormat = MailFormat.Html; // enumeration

oMail.Priority = MailPriority.High; // enumeration

oMail.Body = "Sent at: " + DateTime.Now;

SmtpMail.SmtpServer = SERVER;

SmtpMail.Send(oMail);

oMail = null; // free up resources

}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://aspstarterkit.com/index.php/getting-started/using-cdosys-to-send-email-with-godaddy/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>

