Sndmail.DLL 1.3
Contains Microsoft(c) SQL Server extended stored procedure - xp_sndmail.
xp_sndmail - is alternative to xp_sendmail unlike which allows to send e-mail messages by means of only SMTP protocol, without use MAPI and MS Outlook.
xp_rcvmail - is alternative to xp_readmail , allows to read e-mail messages by POP3 protocol
Copy Sndmail.dll to the directory containing the standard SQL Server DLL files (C:\Program Files\Microsoft SQL Server\Mssql\Binn by default).
use master
go
sp_addextendedproc `xp_sndmail`, `sndmail.dll`
go
Example.
declare @error int
exec @error=master..xp_sndmail
`192.168.1.1`, -- IP-address of SMTP-server varchar(15)
`192.168.1.10`, -- IP-address of local PC varchar(15)
`bob@company.com`, -- e-mail `to` varchar(50)
`sql@company.com`, -- e-mail `from` varchar(50)
`Alarm`, -- subject varchar(100)
`Message` -- message body varchar(8000)
select @error
Variable @error will contain an error code, 0 - completed successfully.
AppGini generates multi-user PHP database applications for MySQL. Create tables, View, add, edit, delete, sort and filter records. Advanced foreign key support. Supports CSS and templates for customizing scripts appearance.
ApexSQL Debug is an Add-in to SQL Server Management Studio that offers step into, step out of, step through debugging with support for conditional break points, watches, call stacks and more.
ApexSQL Enforce is designed to allow users automate custom designed database reviews in an objective, unbiased and repeatable way. ApexSQL Enforce empowers end users to design their own internal policies and set their own standards etc.
Query ODBC data sources, author SQL scripts and queries, execute multiple SQL scripts or stored procedures simultaneously, and more.
Query OLE DB data sources, author SQL scripts and queries, execute multiple SQL scripts or stored procedures simultaneously, and more.
