February 11, 2011 at 4:46 am
Hi,
I was able to send mail with attachment only. How can i overcome this.
The below one executed & sent mail
EXEC msdb.dbo.sp_send_dbmail
@recipients=@ToMail,
@profile_name =@MailPtofile,
@subject = 'Testing mail account without file',@body='File attachment contains more details',
,@file_attachments=@FilePath
Where as the following code executed and showed in symail_sentitems ,but didnt get mail after waiting for long time also...
EXEC msdb.dbo.sp_send_dbmail
@recipients=@ToMail,
@profile_name =@MailPtofile,
@subject = 'Testing mail account without file'@body='File attachment or query results size exceeds allowable value.Please contact Admin/Support for more information.'
After i execute the first script i got mail immdtly....
Is there any configuration needed to get a mail even attachment not available.
Thanks,
Pulivarthi
February 11, 2011 at 7:24 am
You're missing a comma before @body in the second script. Is that typo in the actual script, or just an error in the post?
- Gus "GSquared", RSVP, OODA, MAP, NMVP, FAQ, SAT, SQL, DNA, RNA, UOI, IOU, AM, PM, AD, BC, BCE, USA, UN, CF, ROFL, LOL, ETC
Property of The Thread
"Nobody knows the age of the human race, but everyone agrees it's old enough to know better." - Anon
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply