I am providing the IP address for the SMTP server. Currently in DTS we are
using a simple activeX script to send email using the same server. Does
'Set the CDOSYS configuration fields to use an SMTP server.
'Enter name or IP address of remote SMTP server.
if it requires admin permissions then it will not work for us. I have gone
email. Thanks for your help on this.
"Joe Webb" wrote:
> Hi Andy -
>
> You can send mail to any SMTP server to which you have access. You
> cannot, however, specify login information with the built-in SMTP
> protocol. Are you fully qualifying the mail server name?
>
> You can turn on verbose logging to get additional information in the
> event log. For more info on how configure the logging
> levels, set
> ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/sqlntsv9/html/ba1164a1-b965-48ff-9b86-da92f519be54.htm
> in BOL.
>
> HTH...
>
> --
> Joe Webb
> SQL Server MVP
>
http://www.sqlns.com >
>
> ~~~
> Get up to speed quickly with SQLNS
>
http://www.amazon.com/exec/obidos/tg/detail/-/0972688811 >
> I support PASS, the Professional Association for SQL Server.
> (
www.sqlpass.org)
>
> On Tue, 25 Apr 2006 06:23:02 -0700, Andy
> <Andy@discussions.microsoft.com> wrote:
>
> >I am using the following code in my ICF file to try and set up email
> >notifications.
> >
> ><DeliveryChannels>
> > <DeliveryChannel>
> > <DeliveryChannelName>SMTPServer01</DeliveryChannelName>
> > <ProtocolName>SMTP</ProtocolName>
> > <Arguments>
> > <Argument>
> > <Name>SmtpServer</Name>
> > <Value>MailServer01</Value>
> > </Argument>
> > <Argument>
> > <Name>BodyEncoding</Name>
> > <Value>utf-16</Value>
> > </Argument>
> > </Arguments>
> > </DeliveryChannel>
> ></DeliveryChannels>
> >
> >I am replacing MailServer01 with the name of our mail server. I have read
> >that you can ONLY use the IIS SMTP service. Is this true, or can
> >Notification Services just connect to the server as you can in .NET? Also,
> >when I submit an event and it does not send out a notification, are any log
> >files created? How can I tell if a notification was sent successfully?
> >
> >Thanks.