944,039 Members | Top Members by Rank

Ad:
  • ASP Discussion Thread
  • Unsolved
  • Views: 1230
  • ASP RSS
Nov 2nd, 2007
0

need help how to produce a txt file after email being sent in ASP

Expand Post »
I have done the back-end code in the ASP,

I was wondering if there's a way to produce a text file on a server, after form has been submitted by user. I am also putting a script to put via email, but want to save it as a text file for each message sent for backup purposes. Or if some of the people want to go back and track the messages

Here is the ASP Code:
<%@ Language=VBScript %>

<%
Option Explicit
%>


<%
' -----------------------------------------------------
' CDONTS Email send script
' © http://www.designplace.org/
' Comments must remain intact for re-use of this code
' -----------------------------------------------------


dim strName, strEmailOne, strEmailTwo, strMessage, optSuggestions, strEmailTo

strName = Request.Form("name") ' holds inputted name
strEmailOne = Request.Form("emailOne") ' holds inputted email address
strEmailTwo = Request.Form("emailTwo") ' holds inputted email address
strMessage = Request.Form("message") ' holds inputted message
optSuggestions = Request.Form("suggestions").Item ' drop down list selection

' -- check all fields for empty values --
' -- remove and add new as required --

if strMessage = "" then
Response.Redirect "suggestion_box.asp?action=err4"
end if

' if strName = "" then
' Response.Redirect "suggestion_box.asp?action=err1"
' else if strEmailOne = "" then
' Response.Redirect "suggestion_box.asp?action=err2"
' else if strEmailTwo = "" then
'Response.Redirect "suggestion_box.asp?action=err3"
'else if strMessage = "" then
'Response.Redirect "suggestion_box.asp?action=err4"
'else if optSuggestions = "" then
'Response.Redirect "suggestion_box.asp?action=err5"
'end if
'end if
'end if
'end if
'end if

' -- start determine correct send to address based on suggestion type --

Select Case optSuggestions

Case "Web Enhancements"
strEmailTo = "kdemas@avanquestusa.com"

Case "Application Enhancements"
strEmailTo = "jemalonzo2001@yahoo.com;jadem@avanquestusa.com"

Case "New Product Suggestions"
strEmailTo = "jemalonzo2001@yahoo.com;jadem@avanquestusa.com"

Case "Workplace Suggestions"
strEmailTo = "jemalonzo2001@yahoo.com;jadem@avanquestusa.com"

Case "Employee Recognition"
strEmailTo = "jemalonzo2001@yahoo.com;jadem@avanquestusa.com"

Case "Cultural Events"
strEmailTo = "jemalonzo2001@yahoo.com;jadem@avanquestusa.com"

Case "Other"
strEmailTo = "jemalonzo2001@yahoo.com;jadem@avanquestusa.com"

Case Else
strEmailTo = "jadem@avanquestusa.com;syoung@avanquestusa.com;feedback@avanquestusa.com"

End Select

' -- end determine correct send to address based on suggestion type --

' -- begin email send process --

dim objMail

Set objMail = CreateObject("CDONTS.NewMail")

' -- email variables --
objMail.To = Trim(strEmailTo)
objMail.From = Trim("feedback@avanquestusa.com")
objMail.Subject = "Suggestion box for Avanquest North America"
objMail.BodyFormat = "0" ' HTML format
objMail.Body = "Here are some suggestions, comments and concerns for Avanquest North America:" & vbCrLf _
& vbCrLf _
& "Type of Suggestions/Comments: " & Trim(optSuggestions) & vbCrLf _
& vbCrLf _
& "Message: " & Trim(strMessage)

' -- send the email --
objMail.Send

' -- clean up object
Set objMail = Nothing

' -- execute confirmation page
Response.Redirect "thankyou.asp"
%>
Similar Threads
Reputation Points: 10
Solved Threads: 0
Newbie Poster
doraima29 is offline Offline
19 posts
since Oct 2006
Nov 5th, 2007
0

Re: need help how to produce a txt file after email being sent in ASP

To create and write a file pertaining to the email sent, use the following code:
ASP Syntax (Toggle Plain Text)
  1. Dim filename, fs, f, strRnd
  2. strRnd = FormatDateTime(Now(),2) & "_"
  3. strRnd = Replace(strRnd, "/", "")
  4. For intCounter = 1 To 6
  5. intDecimal = Int((26 * Rnd) + 1) + 96
  6. strRnd = strRnd & Chr(intDecimal)
  7. Next
  8. filename = strRnd & ".txt"
  9. Set fs=Server.CreateObject("Scripting.FileSystemObject")
  10. Set f=fs.CreateTextFile(filename,true)
  11. f.write(objMail.Body)
  12. 'or set objmail.body to another variable and call it here.
  13. 'if you do call this variable or set it to another variable,
  14. 'you must do it before you end the objMail but after you
  15. 'set the objMail.Body.
  16. f.close
  17. Set f=nothing
  18. Set fs=nothing
This will create a text file with todays date followed by a unique key so there are no duplicates. It will write your entire email there. This is not very efficient in finding emails delt on a large basis. It will only spit out something like this in a folder: 1132007_KLJDLL.txt
Obviously you cannot tell what it is by just looking at it. Get creating, set a new name to it if you wish!
Reputation Points: 43
Solved Threads: 68
Veteran Poster
SheSaidImaPregy is offline Offline
1,080 posts
since Sep 2007

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in ASP Forum Timeline: How to access DOM table objects in an iframe with VBScript
Next Thread in ASP Forum Timeline: help me please. i am making a login page..





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC