Click here to Skip to main content
15,881,812 members
Articles / Web Development / ASP.NET

Invoke .Net Assembly using SSIS:Email Framework

Rate me:
Please Sign up or sign in to vote.
4.43/5 (3 votes)
21 Oct 2008CPOL3 min read 49.2K   216   27  
This article demonstrate use of SSIS package that helps in invoking .Net Assembly having email component in it.
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
	<connectionStrings>
		<add name="Connection String" connectionString="Password=rrrr;Persist Security Info=True;User ID=sad;Initial Catalog=abc;Data Source=xyz;Pooling=False;" providerName="System.Data.SqlClient"/>		
	</connectionStrings>
	<appSettings>
		<!--Email Service Configuration-->
		<add key="SMTPServerName" value="abccd"/>
		<add key="PortNumber" value="25"/>
		<!--End  -->
		
		<!--Mail Sender for Email functionality  -->
		<add key="MailFrom" value="xyz@xyz.com"/>
		<add key="IsProduction" value="1"/>
		<add key="ToTestID" value="xyz@xyz.com"/>
		<add key="IsSendMail" value="NO"/>
		<add key="IsMonitoringService" value="0"/>
		<add key="ET_DueForCreditPayment" value="D:/EmailFramework/EmailTemplate/ET_DueForCreditPayment.htm"/>
		<add key="EmailTraceLogPath" value="D:/EmailFramework/EmailLog.txt"/>
		
		<!--End  -->
	</appSettings>
	<system.net>
		<mailSettings>
			<smtp deliveryMethod="SpecifiedPickupDirectory">
				<specifiedPickupDirectory pickupDirectoryLocation="C:\test\" />
			</smtp>
		</mailSettings>
	</system.net>
</configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
Australia Australia
Whatsup-->Exploring--> MVC/HTML5/Javascript & Virtualization.......!
www.santoshpoojari.blogspot.com

Comments and Discussions