<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; Difference Between Database Mail and SQLMail</title>
	<atom:link href="http://blog.sqlauthority.com/2008/07/05/sql-server-difference-between-database-mail-and-sqlmail/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2008/07/05/sql-server-difference-between-database-mail-and-sqlmail/</link>
	<description>Notes of a SQL Server MVP and Database Administrator</description>
	<lastBuildDate>Sat, 21 Nov 2009 05:54:09 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Georg Gent</title>
		<link>http://blog.sqlauthority.com/2008/07/05/sql-server-difference-between-database-mail-and-sqlmail/#comment-57353</link>
		<dc:creator>Georg Gent</dc:creator>
		<pubDate>Thu, 05 Nov 2009 12:20:33 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=672#comment-57353</guid>
		<description>Sending Emails with DB Mail works fine, but DB Mail can&#039;t read emails! So DB is not a full replacement. Does someone has a suggestion how to read emails?

Thanks</description>
		<content:encoded><![CDATA[<p>Sending Emails with DB Mail works fine, but DB Mail can&#8217;t read emails! So DB is not a full replacement. Does someone has a suggestion how to read emails?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kuldip</title>
		<link>http://blog.sqlauthority.com/2008/07/05/sql-server-difference-between-database-mail-and-sqlmail/#comment-54072</link>
		<dc:creator>Kuldip</dc:creator>
		<pubDate>Fri, 24 Jul 2009 13:59:17 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=672#comment-54072</guid>
		<description>Nice article,
What ever i find i got every information from this website.
it&#039;s great.</description>
		<content:encoded><![CDATA[<p>Nice article,<br />
What ever i find i got every information from this website.<br />
it&#8217;s great.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hament verma</title>
		<link>http://blog.sqlauthority.com/2008/07/05/sql-server-difference-between-database-mail-and-sqlmail/#comment-52871</link>
		<dc:creator>Hament verma</dc:creator>
		<pubDate>Tue, 09 Jun 2009 12:00:37 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=672#comment-52871</guid>
		<description>Is it possible to send MIME (Multipart email) via Database Mail 

Thanks</description>
		<content:encoded><![CDATA[<p>Is it possible to send MIME (Multipart email) via Database Mail </p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joseph</title>
		<link>http://blog.sqlauthority.com/2008/07/05/sql-server-difference-between-database-mail-and-sqlmail/#comment-52209</link>
		<dc:creator>joseph</dc:creator>
		<pubDate>Fri, 22 May 2009 18:39:22 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=672#comment-52209</guid>
		<description>Hi,

You have mentioned in your post that &quot;Database Mail can be encrypted for additional security&quot;. I have tried to find some information regarding this feature but wasn’t able to locate anything. Would you have any technical information (how does it work and how to implement it) regarding this functionality? 

Thank you for your time.

Regards,

Joseph</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>You have mentioned in your post that &#8220;Database Mail can be encrypted for additional security&#8221;. I have tried to find some information regarding this feature but wasn’t able to locate anything. Would you have any technical information (how does it work and how to implement it) regarding this functionality? </p>
<p>Thank you for your time.</p>
<p>Regards,</p>
<p>Joseph</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Imran Mohammed</title>
		<link>http://blog.sqlauthority.com/2008/07/05/sql-server-difference-between-database-mail-and-sqlmail/#comment-51829</link>
		<dc:creator>Imran Mohammed</dc:creator>
		<pubDate>Wed, 13 May 2009 02:43:51 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=672#comment-51829</guid>
		<description>@Rao.

Thanks for appreciation.

When you create a job, in response tab you can send alert when Job completes/ succeeds/ fail. 

Usually when a job succeeds or fails you will get a message related to that job in the same alert. 

You can use database mail to send alerts.

Look at link below, to know more how. For SQL Server 2005, process is exact same as shown in below link,

Link : http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/


Another workaround if above procedure does not fulfill your needs, then you can create a logfile for job on operating system ( Right Click Job Name, Click Properties, Double Click Step or edit step, click on Advance tab and select an option that suits best) , the next step (set it in a way, if previous step fails, still this step has to be executed) of the same job will be to send that log file created on operating system through an email ( using xp_sendemail). This will also database mail to send email.

let me know if you have questions.

~ IM.</description>
		<content:encoded><![CDATA[<p>@Rao.</p>
<p>Thanks for appreciation.</p>
<p>When you create a job, in response tab you can send alert when Job completes/ succeeds/ fail. </p>
<p>Usually when a job succeeds or fails you will get a message related to that job in the same alert. </p>
<p>You can use database mail to send alerts.</p>
<p>Look at link below, to know more how. For SQL Server 2005, process is exact same as shown in below link,</p>
<p>Link : <a href="http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/" rel="nofollow">http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/</a></p>
<p>Another workaround if above procedure does not fulfill your needs, then you can create a logfile for job on operating system ( Right Click Job Name, Click Properties, Double Click Step or edit step, click on Advance tab and select an option that suits best) , the next step (set it in a way, if previous step fails, still this step has to be executed) of the same job will be to send that log file created on operating system through an email ( using xp_sendemail). This will also database mail to send email.</p>
<p>let me know if you have questions.</p>
<p>~ IM.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rao</title>
		<link>http://blog.sqlauthority.com/2008/07/05/sql-server-difference-between-database-mail-and-sqlmail/#comment-51823</link>
		<dc:creator>Rao</dc:creator>
		<pubDate>Tue, 12 May 2009 21:44:49 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=672#comment-51823</guid>
		<description>Sorry typo SQL 2005 SP3</description>
		<content:encoded><![CDATA[<p>Sorry typo SQL 2005 SP3</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rao</title>
		<link>http://blog.sqlauthority.com/2008/07/05/sql-server-difference-between-database-mail-and-sqlmail/#comment-51822</link>
		<dc:creator>Rao</dc:creator>
		<pubDate>Tue, 12 May 2009 21:41:57 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=672#comment-51822</guid>
		<description>Imran, I have seen some of your posts on this blog, U have explained them very clearly and in detail,, like Txn trun 

I have a question regarding DB mail, is there a way that i can either attach  error log or give a detailed error message to the recipient mail when a job fails.
Please let me know if that works on SQL 2005 DB Mail.


Details: Windows 2003 Enterprise
SQL: SQL Server 2005 Enterprise with latest SP4 

Thank you,

Rao</description>
		<content:encoded><![CDATA[<p>Imran, I have seen some of your posts on this blog, U have explained them very clearly and in detail,, like Txn trun </p>
<p>I have a question regarding DB mail, is there a way that i can either attach  error log or give a detailed error message to the recipient mail when a job fails.<br />
Please let me know if that works on SQL 2005 DB Mail.</p>
<p>Details: Windows 2003 Enterprise<br />
SQL: SQL Server 2005 Enterprise with latest SP4 </p>
<p>Thank you,</p>
<p>Rao</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Imran Mohammed</title>
		<link>http://blog.sqlauthority.com/2008/07/05/sql-server-difference-between-database-mail-and-sqlmail/#comment-51544</link>
		<dc:creator>Imran Mohammed</dc:creator>
		<pubDate>Tue, 05 May 2009 03:23:53 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=672#comment-51544</guid>
		<description>@jayant das

If you are using SQL Server 2005, then you have two ways of sending email through SQL Server.

1. Database Mail. (Only SMTP)
2. SQL Mail (Same as SQL Server 2000)

Database Mail does not require any other software, SQL Server itself can send emails given SMTP Server details provded to SQL Server.

If you use SQL Mail, you need to use Outlook. Which I don;t suggest for security reasons and alot of other pain giving reasons 

Database Mail is NOT available in SQL Server Express Edition though.

Go through a step by step procedure (screen shots explanation)

http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/

~ IM</description>
		<content:encoded><![CDATA[<p>@jayant das</p>
<p>If you are using SQL Server 2005, then you have two ways of sending email through SQL Server.</p>
<p>1. Database Mail. (Only SMTP)<br />
2. SQL Mail (Same as SQL Server 2000)</p>
<p>Database Mail does not require any other software, SQL Server itself can send emails given SMTP Server details provded to SQL Server.</p>
<p>If you use SQL Mail, you need to use Outlook. Which I don;t suggest for security reasons and alot of other pain giving reasons </p>
<p>Database Mail is NOT available in SQL Server Express Edition though.</p>
<p>Go through a step by step procedure (screen shots explanation)</p>
<p><a href="http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/" rel="nofollow">http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/</a></p>
<p>~ IM</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pinaldave</title>
		<link>http://blog.sqlauthority.com/2008/07/05/sql-server-difference-between-database-mail-and-sqlmail/#comment-51519</link>
		<dc:creator>pinaldave</dc:creator>
		<pubDate>Mon, 04 May 2009 09:56:28 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=672#comment-51519</guid>
		<description>@Jayant,

Try : http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/

Regards,
Pinal</description>
		<content:encoded><![CDATA[<p>@Jayant,</p>
<p>Try : <a href="http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/" rel="nofollow">http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/</a></p>
<p>Regards,<br />
Pinal</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jayant das</title>
		<link>http://blog.sqlauthority.com/2008/07/05/sql-server-difference-between-database-mail-and-sqlmail/#comment-51518</link>
		<dc:creator>jayant das</dc:creator>
		<pubDate>Mon, 04 May 2009 08:25:06 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=672#comment-51518</guid>
		<description>Dear Pinal

I am using sql server 2005 sp1 but unable to send mail , is there need any aditional software  apart from outlook 2003.

Thanks in Advance

Regards
Jayant</description>
		<content:encoded><![CDATA[<p>Dear Pinal</p>
<p>I am using sql server 2005 sp1 but unable to send mail , is there need any aditional software  apart from outlook 2003.</p>
<p>Thanks in Advance</p>
<p>Regards<br />
Jayant</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karthikeyan</title>
		<link>http://blog.sqlauthority.com/2008/07/05/sql-server-difference-between-database-mail-and-sqlmail/#comment-43944</link>
		<dc:creator>Karthikeyan</dc:creator>
		<pubDate>Tue, 28 Oct 2008 06:57:11 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=672#comment-43944</guid>
		<description>good one. is there any condition that db server and smtv server should be on same physical machine?</description>
		<content:encoded><![CDATA[<p>good one. is there any condition that db server and smtv server should be on same physical machine?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph</title>
		<link>http://blog.sqlauthority.com/2008/07/05/sql-server-difference-between-database-mail-and-sqlmail/#comment-42415</link>
		<dc:creator>Joseph</dc:creator>
		<pubDate>Fri, 05 Sep 2008 03:30:00 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=672#comment-42415</guid>
		<description>Hi Pinal,

If I want to read emails and process them using database mail, how can I do it. Are you able to help.

Thanks,</description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>If I want to read emails and process them using database mail, how can I do it. Are you able to help.</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ram</title>
		<link>http://blog.sqlauthority.com/2008/07/05/sql-server-difference-between-database-mail-and-sqlmail/#comment-40526</link>
		<dc:creator>Ram</dc:creator>
		<pubDate>Sun, 20 Jul 2008 17:50:17 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=672#comment-40526</guid>
		<description>Can you please put a blog on how to setup database mail (step by step).  I am trying to send response back if a Job fails.</description>
		<content:encoded><![CDATA[<p>Can you please put a blog on how to setup database mail (step by step).  I am trying to send response back if a Job fails.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER - Introduction to Service Broker Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2008/07/05/sql-server-difference-between-database-mail-and-sqlmail/#comment-40443</link>
		<dc:creator>SQL SERVER - Introduction to Service Broker Journey to SQL Authority with Pinal Dave</dc:creator>
		<pubDate>Fri, 18 Jul 2008 16:59:43 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=672#comment-40443</guid>
		<description>[...] for SQL Server. It is used for sending emails and through Database Mails. You can read about SQL SERVER - Difference Between Database Mail and SQLMail here. Service Broker is feature which provides facility to SQL Server to send an asynchronous, [...]</description>
		<content:encoded><![CDATA[<p>[...] for SQL Server. It is used for sending emails and through Database Mails. You can read about SQL SERVER &#8211; Difference Between Database Mail and SQLMail here. Service Broker is feature which provides facility to SQL Server to send an asynchronous, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Girish M</title>
		<link>http://blog.sqlauthority.com/2008/07/05/sql-server-difference-between-database-mail-and-sqlmail/#comment-40119</link>
		<dc:creator>Girish M</dc:creator>
		<pubDate>Sat, 12 Jul 2008 10:39:39 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=672#comment-40119</guid>
		<description>Nice and concise. Switching to SMTP makes setting up mail capability on your SQL server a breeze.</description>
		<content:encoded><![CDATA[<p>Nice and concise. Switching to SMTP makes setting up mail capability on your SQL server a breeze.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brandon M</title>
		<link>http://blog.sqlauthority.com/2008/07/05/sql-server-difference-between-database-mail-and-sqlmail/#comment-40027</link>
		<dc:creator>Brandon M</dc:creator>
		<pubDate>Thu, 10 Jul 2008 16:07:33 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=672#comment-40027</guid>
		<description>Oh, I see... nevermind my last comment.  You were telling them how to turn on the old SQL Mail XPs, not how to turn on the new Database Mail XPs.</description>
		<content:encoded><![CDATA[<p>Oh, I see&#8230; nevermind my last comment.  You were telling them how to turn on the old SQL Mail XPs, not how to turn on the new Database Mail XPs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brandon M</title>
		<link>http://blog.sqlauthority.com/2008/07/05/sql-server-difference-between-database-mail-and-sqlmail/#comment-40026</link>
		<dc:creator>Brandon M</dc:creator>
		<pubDate>Thu, 10 Jul 2008 16:05:46 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=672#comment-40026</guid>
		<description>&#039;SQL Mail XPs&#039; or &#039;Database Mail XPs&#039;?</description>
		<content:encoded><![CDATA[<p>&#8216;SQL Mail XPs&#8217; or &#8216;Database Mail XPs&#8217;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nice</title>
		<link>http://blog.sqlauthority.com/2008/07/05/sql-server-difference-between-database-mail-and-sqlmail/#comment-39822</link>
		<dc:creator>Nice</dc:creator>
		<pubDate>Sun, 06 Jul 2008 12:51:04 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=672#comment-39822</guid>
		<description>one.</description>
		<content:encoded><![CDATA[<p>one.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
