새 db 메일 프로필과 계정을 사용하여 전자 메일을 보내도록 SQL 데이터베이스 메일을 보내려고합니다. 새로운 db 메일 프로필과 계정은 이전 db 메일 프로필과 우리 서버의 계정과 동일한 서버 이름을 사용합니다. 명령을 실행할 때마다 :SQL 데이터베이스 메일이 특정 프로필로 전송되지 않습니다.
EXEC msdb.dbo.sp_send_dbmail
@profile_name = 'OLD PROFILE NAME',
@recipients = '[email protected]',
@subject = 'Test Email',
@body = '<html><body><p>test content test content test content test content test content</p></body></html>',
@body_format = 'HTML';
이메일은 문제없이 전송됩니다. 그러나 명령을 실행할 때마다
EXEC msdb.dbo.sp_send_dbmail
@profile_name = 'NEW PROFILE NAME',
@recipients = '[email protected]',
@subject = 'Test Email',
@body = '<html><body><p>test content test content test content test content test content</p></body></html>',
@body_format = 'HTML';
나는 이메일을받지 못합니다. 뭐가 더 이상한가 msdb 명령을 사용하여 보낸 항목을 볼 수 있다는 내가 그 못해 이메일을 보내고 있다는 것을 말하는가 ??
의견이나 도움을 주시면 대단히 감사하겠습니다.
프로필을 보면 도움이 될 것입니다. 예를 들어 프로파일의 smtp 서버는 동일합니까? – Sam