Home Forums Data Warehousing Integration Services Can I use SQL Server Agent >> Jobs - to send a email reminder to an email address? RE: Can I use SQL Server Agent >> Jobs - to send a email reminder to an email address?

  • thanks,

    its working now.

    we already had dbmail set up so managed to just use something like this to send mail:

    EXEC msdb.dbo.sp_send_dbmail

    @recipients = 'youremailid@xxxx.com',

    @body = 'Database Mail Testing...',

    @subject = 'Databas Mail from SQL Server';

    from here: