File Manager
Back to List
|
Up to Parent Directory
| Current Directory: ~/mailtest
Editing: mailtest/sendmail.asp.bak
Full path: C:\ict\ICT\mailtest\sendmail.asp.bak
Permissions: rwx
Write test: File appears not directly writable
Current process identity: IIS APPPOOL\DefaultAppPool
<html> <head> <title>ICT DEMOstration</title> </head> <body> <% Dim myMail,HTML,strMsg Set myMail = Server.CreateObject("CDO.Message") strMsg = "" strMsg = strMsg &"<h1>My Message</h1><br>" strMsg = strMsg &"<table width='285' border='1'>" strMsg = strMsg &" <tr>" strMsg = strMsg &" <td><div align='center'><strong>My Message </strong></div></td>" strMsg = strMsg &" <td><div align='center'><font color='red'>My Message</font></div></td>" strMsg = strMsg &" <td><div align='center'><font size='2'>My Message</font></div></td>" strMsg = strMsg &" </tr>" strMsg = strMsg &" <tr>" strMsg = strMsg &" <td><div align='center'>My Message</div></td>" strMsg = strMsg &" <td><div align='center'>My Message</div></td>" strMsg = strMsg &" <td><div align='center'>My Message</div></td>" strMsg = strMsg &" </tr>" strMsg = strMsg &" <tr>" strMsg = strMsg &" <td><div align='center'>My Message</div></td>" strMsg = strMsg &" <td><div align='center'>My Message</div></td>" strMsg = strMsg &" <td><div align='center'>My Message</div></td>" strMsg = strMsg &" </tr>" strMsg = strMsg &"</table>" myMail.From = "wassanaw@swu.ac.th" myMail.To = "wassanaw@swu.ac.th" myMail.Subject = "My Subject" myMail.HTMLBody = strMsg myMail.Send Response.write ("Mail Sending.") Set myMail = Nothing %> </body> </html>