xp_sendmail with no subject

  • Hi All,

    I am running SQL 2000 ( 8.00.818 ) on Windows 2003 ( NT 5.2 (3790)). When I try to run :

    xp_sendmail 'myid@domain.com' , @subject = 'subject'

    I do get an email but the 'subject' is missing. Has anyone seen this kind of problem ?  Do we have any workaround for this one ?

    The version for SQLMAP70.DLL is :

    2000.80.811.0

    Any help is appreaciated.

    Thanks.

  • Try executing the xp with named parameters like this:

    EXEC master.dbo.xp_sendmail @recipients = 'myid@domain.com' , @subject = 'subject'

  • Thanks racosta..

    But even that didn't work. So finally I had to rollback to the older version (Outlook 2002) and now it is working fine.

     

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply