document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <cfscript>
  2.  
  3.      savecontent variable="tmpVariable" {
  4.         writedump(application);
  5.     }
  6.  
  7.     // Create an instance of the mail object
  8.     mail=new mail();
  9.  
  10.     // Set it\'s properties
  11.     mail.setSubject( "Application" );
  12.     mail.setTo( "me@domain.com" );
  13.     mail.setFrom( "me@domain.com" );
  14.  
  15.     // Add email body content in text and HTML formats
  16.     mail.addPart( type="html", charset="utf-8", body=tmpVariable );
  17.  
  18.     // Send the email
  19.     mail.send();
  20.  
  21. </cfscript>
');