Advanced Mailer and COM Program Test

This advanced mailer component test will not only show you which components are installed on the host server, but can also test to ensure that the mailer components are configured correctly by attempting to send an email with each mailer component you specify.

Mailer Components Supported:

  • CDONTS/Chili!Mail
  • ASPMail
  • ASPQMail
  • JMail
  • SA-Smtp Mail
  • ASPEmail

There's a further 308 COM objects that you can check on your host server.

Comments

I know how to delete multiple images!!!!!!!!

October 31, 2001 by h sj

I know how to  delete multiple images
the first thing you must remeber is:
copy this code into your web code
<%
Function newFileSystemObject()
  set newfilesystemobject="Server".CreateObject("Scripting.FileSystemObject")
End Function
%>
<%
Function fileExists(aFileSpec)
  fileexists="newFileSystemObject".FileExists(aFileSpec)
End Function
%>
ok!
the next thing is.
modify the code like this:
If (Not MM_abortEdit) Then
    ' execute the delete
    Set MM_editCmd = Server.CreateObject("ADODB.Command")
    MM_editCmd.ActiveConnection = MM_editConnection
 MM_editCmd.CommandText = MM_editQuery
' This is where we delete the file before we delete the record!

     Set File = CreateObject("Scripting.FileSystemObject")

     ImagePath1 = Server.MapPath("\ASP\jcgs\IMAGES") 
 
     ImagePath = ImagePath1 & "\" & (Recordset1.Fields.Item("tupid").Value)

     If fileExists(ImagePath) Then

  File.DeleteFile(ImagePath)

  End If

     ImagePath = ImagePath1 & "\" & (Recordset1.Fields.Item("tupid1").Value)

  If fileExists(ImagePath) Then

   File.DeleteFile(ImagePath)

  End If       

 MM_editCmd.Execute

    MM_editCmd.ActiveConnection.Close

look it careful ImagePath1 and ImagePath ,when code File.DeleteFile(ImagePath) Execute ,ImagePath1 doesn't change .so you can use again. the code , I have tested ,it really work!
I come form china,my English is not very well .but I hope can help you! If have any question you can Email to me : hsj178@163.net. good job paul!

The download at Pensaworks is DOWN.

August 19, 2009 by Justin Moss

Their support has not responded to my emails to rectify - perhaps they don't want to distribute it. 

Can we have an alternative link please?

You must me logged in to write a comment.