Guest User

Untitled

a guest
Jan 17th, 2019
483
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <%@LANGUAGE="VBSCRIPT" %>
  2. <HTML>
  3. <BODY>
  4. <%
  5. Set jmail = Server.CreateObject("JMail.Message")
  6.  
  7. jmail.AddRecipient "me@gmail.com"
  8. jmail.From = "me@mydomain.com"
  9.  
  10. jmail.Subject = "TESTING 123"
  11. jmail.Body = "You Just Got An Email"
  12.  
  13. jmail.MailServerUserName = "myUserName"
  14. jmail.MailServerPassword = "myPassWord"
  15. jmail.Send( "mail.myDomain.com:587" )
  16. %>
  17. Email sent! </BODY>
  18. </HTML>
Add Comment
Please, Sign In to add comment