我的数据库邮件出现问题,没有显示我创建的新配置文件。我正在执行这个:
Execute msdb.dbo.sysmail_add_account_sp
@account_name = 'email here',
@email_address = 'email here' ,
@display_name = 'White Box Gaming' ,
@replyto_address = 'email here' ,
@description = 'Profile used to send mail' ,
@mailserver_name = 'smtp.gmail.com',
@mailserver_type = 'SMTP',
@port = 587,
@username = 'email here',
@password = 'password',
@enable_ssl = 0
没有错误,但是当我尝试查看它时:
select *
from msdb.dbo.sysmail_profile p
join msdb.dbo.sysmail_profileaccount pa on p.profile_id = pa.profile_id
join msdb.dbo.sysmail_account a on pa.account_id = a.account_id
join msdb.dbo.sysmail_server s on a.account_id = s.account_id
没有出现新的配置文件。我错过了什么?