Tell me more ×
Database Administrators Stack Exchange is a question and answer site for database professionals who wish to improve their database skills and learn from others in the community. It's 100% free, no registration required.

I'm just getting into sql-server ssis, so forgive me if this is a basic question. Use the ssis want to send mail from gmail smtp server .

Smtp host =smtp.gmail.com 
port=587 ,
From_Mail_ID=xyz@gmail.com,
To_Mail_ID=abc@gmail.com,

Use the above information I want to send mail from ssis.

use the ssis Help me to send mail

If have any query plz ask.thanks in advanced .

share|improve this question

1 Answer

There is a built in task for sending SMTP mail in SSIS. If you want to use a script task to send mail via SMTP the post below lists several ways to do what you are looking to do.

http://social.msdn.microsoft.com/Forums/en/netfxnetcom/thread/a75533eb-131b-4ff3-a3b2-b6df87c25cc8

share|improve this answer
Jason Cumberland Thanks for reply,need helping hand on script task,plz show some syntax or helpful example on script task to send mail . – shamim Feb 2 '12 at 4:03
@shamim sriharik.blogspot.com/2008/08/… That should work in SSIS 2005, since you're limited to VB.NET only. – Brandon Feb 2 '12 at 15:13
Here's a VB.Net example. pragmaticworks.com/help/dtsxchange/scr/… – Jason Cumberland Feb 2 '12 at 16:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.