Configuring Email in SQL Server Express
Its a known issue that SQL Server express edition wont support Email . TO overcome this we can use CLR based email stored procedure. Step 1 : Compile the VB code and convert as a dll. Code : Imports System.Net.Mail Public Class StoredProcedure <Microsoft.SqlServer.Server.SqlProcedure()> _ Public Shared Sub spSendMail(ByVal recipients As String, ByVal subject… Read More »