mailto problem - need to autosend w/>256chars

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. mailto into exe
      How I can to do "mailto" for exe in flash?
    5. 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...
  3. #2

    Default 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

  4. #3

    Default 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...
    > 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

    Curt_C [MVP] Guest

  5. #4

    Default Re: mailto problem - need to autosend w/>256chars

    Please don't multi-post. I have no idea waht this has to do with databases.



    > 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?

    Aaron Bertrand [MVP] Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139