<?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>Dot Net Thoughts &#187; sharepoint</title>
	<atom:link href="http://www.dotnetthoughts.net/tag/sharepoint/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dotnetthoughts.net</link>
	<description>thoughts about .Net, WPF, Sharepoint, Javascript and more.</description>
	<lastBuildDate>Wed, 28 Jul 2010 09:59:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>GUI for STSADM</title>
		<link>http://www.dotnetthoughts.net/2009/04/03/gui-for-stsadm/</link>
		<comments>http://www.dotnetthoughts.net/2009/04/03/gui-for-stsadm/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 07:31:01 +0000</pubDate>
		<dc:creator>Anuraj P</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[sharepoint]]></category>

		<guid isPermaLink="false">http://anuraj.wordpress.com/2009/04/03/gui-for-stsadm/</guid>
		<description><![CDATA[Are you tired of using the command-line version of STSADM? Then, download STSADMWin, the GUI for the powerful command line utility STSADM, from here . I found STSADMWin a very helpful tool. It lists all the STSADM commands in dropdown, and as you select a command, all the parameters for the command show up. You [...]]]></description>
			<content:encoded><![CDATA[<p>Are you tired of using the command-line version of STSADM? Then, download STSADMWin, the GUI for the powerful command line utility STSADM, from <a target="_blank" href="http://blogs.msdn.com/ronalus/archive/2007/01/04/stsadmwin-has-an-2007-version.aspx">here </a>.<br />
I found STSADMWin a very helpful tool. It lists all the STSADM commands in dropdown, and as you select a command, all the parameters for the command show up. You won&#8217;t miss any, even if you want to. Drop the downloaded file to \12\BIN directory and run the executable.<br />
Rock it!</p>
<p>Thanks to my colleague Meera for this useful information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dotnetthoughts.net/2009/04/03/gui-for-stsadm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SPUtility.SendEmail</title>
		<link>http://www.dotnetthoughts.net/2007/11/07/sputilitysendemail/</link>
		<comments>http://www.dotnetthoughts.net/2007/11/07/sputilitysendemail/#comments</comments>
		<pubDate>Wed, 07 Nov 2007 23:02:49 +0000</pubDate>
		<dc:creator>Anuraj P</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[sharepoint]]></category>
		<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[C#.Net]]></category>
		<category><![CDATA[Sharepoint API]]></category>
		<category><![CDATA[SPContext]]></category>
		<category><![CDATA[SPUtility]]></category>
		<category><![CDATA[WSS]]></category>

		<guid isPermaLink="false">http://anuraj.wordpress.com/2007/11/07/sputilitysendemail/</guid>
		<description><![CDATA[In my project I need to send mail to Administrator, while adding items to a list using Webpart. I have tried ASP.Net, System.Net namespace but I need to read all the server and mail settings from any config file. After I got sharepoint&#8217;s own mechanism to send mail. SPUtility.SendEmail(SPContext.Current.Site.OpenWeb(), false, false, &#34;admin@myserver.com&#34;, &#34;Hello World&#34;, &#34;This [...]]]></description>
			<content:encoded><![CDATA[<p>In my project I need to send mail to Administrator, while adding items to a list using Webpart. I have tried ASP.Net, System.Net namespace but I need to read all the server and mail settings from any config file. After I got sharepoint&#8217;s own mechanism to send mail.</p>
<pre class="brush: csharp;">
SPUtility.SendEmail(SPContext.Current.Site.OpenWeb(), false, false, &quot;admin@myserver.com&quot;, &quot;Hello World&quot;, &quot;This is a Sample Mail&quot;);
</pre>
<p>This will send a mail to &#8220;admin@myserver.com&#8221;, with &#8220;Hello World&#8221; as subject and &#8220;This is a Sample Mail&#8221; as body. You can send HTML emails by changing the third parameter to TRUE.</p>
<p>Update : You may need to use <strong>SPSecurity.RunWithElevatedPrivileges</strong> method to send mails.</p>
<p>Url :<a target="_blank" href="http://msdn2.microsoft.com/en-us/library/microsoft.sharepoint.spsecurity.runwithelevatedprivileges.aspx"></p>
<p>http://msdn2.microsoft.com/en-us/library/microsoft.sharepoint.spsecurity.runwithelevatedprivileges.aspx</a></p>
<p>This method enable users to Execute the specified method with Full Control rights even if the user does not otherwise have Full Control.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dotnetthoughts.net/2007/11/07/sputilitysendemail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
