Upload - Send an email with attachment

          Sample for ScriptUtils.ASPForm 

Examples
Upload - Send an email with attachment 
<%
'Sample file Form-Email.asp 
' Let's you send one an email with one or more attachments.

'Create upload form
Dim Form: Set Form = Server.CreateObject("ScriptUtils.ASPForm")

'Do not upload data greater than 1MB. 
Form.SizeLimit = 100*1024
'


Const fsCompletted  = 0

If Form.State = fsCompletted Then 'Completted
  ProcessForm
End If 


Sub ProcessForm
  Dim eFrom, eTo, Subject, Message

  'get source form fields - From, To, Subject and Message
  eFrom = Form("From")
  eTo = Form("To")
  Subject = Form("Subject")
  Message = Form("Message")

  Dim objNewMail, File, FileName, FS, TempFolder

  Set FS = CreateObject("Scripting.FileSystemObject")
  'Get temporary folder
  TempFolder = FS.GetSpecialFolder(2) & "\emailtemp"

  'Create a new email message
  Set objNewMail = CreateObject("CDONTS.NewMail")
  Const CdoMailFormatMime = 0
  objNewMail.MailFormat = CdoMailFormatMime
  'Save source files to temporary folder
  'Add these files to the new e-mail
  For Each File In Form.Files
    'If source file is specified.
    If Len(File.FileName) > 0 Then
      FileName = TempFolder & "\" & File.FileName 
    
      File.SaveAs FileName
      
      objNewMail.AttachFile FileName
    End If
  Next
  
  'Send the new email
  objNewMail.Send eFrom, eTo, Subject, Message

  'delete temporary files
  For Each File In Form.Files
    If Len(File.FileName) > 0 Then
      FileName = TempFolder & "\" & File.FileName 
      FS.DeleteFile FileName
    End If
  Next
End Sub

%>  
<br>Sample For <A Href=http://www.motobit.com>HugeASP upload</A>
<br> Let's you send one an email with one or more attachments.
<br> File size limit Is <%=Form.SizeLimit%> B (<%=Form.SizeLimit \ 1024 %>kB).
<Table Border=0>
<form method="POST" ENCTYPE="multipart/form-data">
  <tr><td> From : </td><td><input Name=From Size=50></td></tr>

  <tr><td> To : </td><td><input Name=To Size=50></td></tr>

  <tr><td> Subject : </td><td><input Name=Subject Size=80></td></tr>

  <tr><td ColSpan=2> Message:
    <br><TextArea Name=Message Cols=76 Rows=10></TextArea>
  </td></tr>

  <tr><td ColSpan=2>E-Mail Attachments:
    <Div ID=files>
       Attachment 1 : <input type="file" name="File1">
    </Div>
    <Input Type=Button Value="Add a file" OnClick=return(Expand()) 
     Style="border=0;background=yellow;cursor:hand">
  </td></tr>

  <tr><td ColSpan=2 Align=Right>
    <input Name=SubmitButton Value="Send email >>" Type=Submit></td></tr>
  </Form>
</Table>

<Script>
//Script To add a attachment file field 
var nfiles = 1;
Function Expand(){
  nfiles++
  var adh = '<BR> Attachment '+nfiles+' : <input type="file" name="File'+nfiles+'">';
  files.insertAdjacentHTML('BeforeEnd',adh);
  return false;
}
</Script>
  Other links for Upload - Send an email with attachment
      Easy to use, hi-performance ASP file upload component with progress bar indicator. Let's you upload multiple files with size up to 2GB to a disk or database along with another form fields. Works with large posts, any character set (including unicode utf-8). Contains one-click multiple files/folders download with on-the-fly compression (Using BinaryWrite/BinaryRead).
      Hi-performance text file logging for ASP/VBScript/VBA applications. Lets you create daily/weekly/monthly log files with variable number of logged values and extra timing and performance info.
       Lets you work with safearray binary data in VBS/JS. It also enables conversion between binary and String data using several code pages. ZLib compress and uncompress functions. Lets you transfer files using compressed stream from a client to server using IE.
      This library also enables calling of some Kernel and Advapi functions (performance, timing, sleep, configuration ...) and enables native work with INI files.


© 1996 – 2005 Motobit Software, help{at}pstruh.cz, help v. 2.16.14