Advertisement
Guest User

Untitled

a guest
Feb 2nd, 2017
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. EXEC msdb.dbo.sysmail_add_account_sp
  2. @account_name = 'ChandreshTestAccount'
  3. , @description = 'Sending email from test account'
  4. , @email_address = 'chandresh.cmk@gmail.com'
  5. , @display_name = 'No-Reply'
  6. , @replyto_address = 'chandresh.cmk@gmail.com'
  7. , @mailserver_name = 'smtp.gmail.com'
  8. , @port = 25
  9. , @username = 'chandresh.cmk@gmail.com'
  10. , @password = 'xxxxxxx'
  11. Go
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement