Ask a Question related to ASP Database, Design and Development.
-
Peter Bassett #1
mailto problem - need to autosend w/>256chars
I thought this would be an easier task than it has become.
I have a form for the user to enter resume information. There are several
fields. I need to email this information to the Recruiter. Ithought I could
just concatenate all the fields into "body" and send it off in a
Response.redirect command a la
RedirectStmt = "mailto:" & "resume@company.com" & "?subject=" & _
Request.QueryString("fullname") & " Resume" &_ "&body=" & body
But I do not want to see the email client pop up. I want this to
automatically be sent. Also, I have read that the mailto limit is 256 chars
which is of course wxceeded with all the resume info.
How can I auto-send the resume and also have the body be any size?
Thanks!
Pete
Peter Bassett Guest
-
Email autosend password from database
Working on a somewhat complex function. I've found some related topics, but no responses that can come close to helping. I've got a "forgot your... -
Mailto mail link problem
Hi, I have a tricky problem here and I have been unable to find a solution to: I am sending mail through a web page using <cfmail> tags. Within... -
Mailto ?
I have always used HTML for my web pages, I am now trying flash but I cant get a button to open my Email editer the way I could with <a href... -
mailto into exe
How I can to do "mailto" for exe in flash? -
mailto
I'm trying to create an email link from a button. I am entering 'mailto:xxxxxx@xxxxx.co.uk' in the behavior text box. It works fine, but it... -
Peter Bassett #2
mailto problem - need to autosend w/>256chars
I thought this would be an easier task than it has become.
I have a form for the user to enter resume information. There are several
fields. I need to email this information to the Recruiter. Ithought I could
just concatenate all the fields into "body" and send it off in a
Response.redirect command a la
RedirectStmt = "mailto:" & "resume@company.com" & "?subject=" & _
Request.QueryString("fullname") & " Resume" &_ "&body=" & body
But I do not want to see the email client pop up. I want this to
automatically be sent. Also, I have read that the mailto limit is 256 chars
which is of course wxceeded with all the resume info.
How can I auto-send the resume and also have the body be any size?
Thanks!
Pete
Peter Bassett Guest
-
Curt_C [MVP] #3
Re: mailto problem - need to autosend w/>256chars
Nope.... you are using the CLIENT to send the mail.
Look at CDO (with SMTP) to send it from the SERVER.
You can't automate hardly anything on the client.....for security reasons.
--
----------------------------------------------------------
Curt Christianson (Software_AT_Darkfalz.Com)
Owner/Lead Designer, DF-Software
[url]http://www.Darkfalz.com[/url]
---------------------------------------------------------
...Offering free scripts & code snippits for everyone...
---------------------------------------------------------
"Peter Bassett" <pbassett2223@comcast.net> wrote in message
news:Xns93D28E28C5F23pbassett2223comcastn@216.148. 227.77...could> I thought this would be an easier task than it has become.
>
> I have a form for the user to enter resume information. There are several
> fields. I need to email this information to the Recruiter. Ithought Ichars> just concatenate all the fields into "body" and send it off in a
> Response.redirect command a la
>
> RedirectStmt = "mailto:" & "resume@company.com" & "?subject=" & _
> Request.QueryString("fullname") & " Resume" &_ "&body=" & body
>
> But I do not want to see the email client pop up. I want this to
> automatically be sent. Also, I have read that the mailto limit is 256> which is of course wxceeded with all the resume info.
>
> How can I auto-send the resume and also have the body be any size?
>
> Thanks!
> Pete
Curt_C [MVP] Guest
-
Aaron Bertrand [MVP] #4
Re: mailto problem - need to autosend w/>256chars
Please don't multi-post. I have no idea waht this has to do with databases.
could> I have a form for the user to enter resume information. There are several
> fields. I need to email this information to the Recruiter. Ithought Ichars> just concatenate all the fields into "body" and send it off in a
> Response.redirect command a la
>
> RedirectStmt = "mailto:" & "resume@company.com" & "?subject=" & _
> Request.QueryString("fullname") & " Resume" &_ "&body=" & body
>
> But I do not want to see the email client pop up. I want this to
> automatically be sent. Also, I have read that the mailto limit is 256> which is of course wxceeded with all the resume info.
>
> How can I auto-send the resume and also have the body be any size?
Aaron Bertrand [MVP] Guest



Reply With Quote

