October 14, 2010 at 9:16 am
Is there a way to configure Database Mail to use either a hotmail or yahoo account. SQL Server 2008 Enterprise Evaluation.
Warm Regards,
Arthur Lorenzini
Sioux Falls, SD
October 14, 2010 at 11:00 am
here they say you need a premium account but look at the sec link ...looks like this person found a work around
http://www.sqlservercentral.com/Forums/Topic583905-145-1.aspx#bm585971
October 14, 2010 at 11:02 am
I've gotten a Gmail account to work just fine; they use an alternate port for SMTP, but the rest was a typical setup:
Lowell
October 16, 2010 at 8:20 am
Tried both the links but noting worked. Still looking into it.
Warm Regards,
Arthur Lorenzini
Sioux Falls, SD
October 16, 2010 at 10:49 pm
did you check your firewall is open for this port number ?
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data/code to get the best help[/url]
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Need a bit of Powershell? How about this
Who am I ? Sometimes this is me but most of the time this is me
October 17, 2010 at 7:40 am
I had to re-install my SSMS for another reason and when I setup the database mail in accordance with your advice, it started working!!!!! THANKS!
Warm Regards,
Arthur Lorenzini
Sioux Falls, SD
October 17, 2010 at 5:07 pm
Run queries below to troubleshoot db-mail issues:
--get failed messages over last 5 days:
SELECT * FROM msdb.dbo.sysmail_faileditems
where datediff (day, sent_date, getdate()) < 5
--get mailitem_id from query above - eg. 2024 - and run below to get full error message (description column):
SELECT * FROM msdb.dbo.sysmail_event_log
where mailitem_id = 2024
__________________________________________________________________________________
SQL Server 2016 Columnstore Index Enhancements - System Views for Disk-Based Tables[/url]
Persisting SQL Server Index-Usage Statistics with MERGE[/url]
Turbocharge Your Database Maintenance With Service Broker: Part 2[/url]
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply