Email autosend password from database

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default 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 password?"
    page, with a username, challenge question, and challenge answer field that
    query my database of registered users. When a user hits submit, I've got a
    link to another page that says that an email has been sent with their password.
    Only problem is, I don't know how to write that function, so an email with
    their password has actually not been sent. Any suggestions or links for me to
    follow?

    Xylum Guest

  2. Similar Questions and Discussions

    1. How to secure database password? (was Perl/DBI newbie: password storage / security question)
      Zedgar, You are chasing the yourself into circles. Security is dictated by circumstances and resources available. In our case, we had plenty of...
    2. Forgot Password encrypted email system
      I really wish there were some examples explaining how to create a forgot password email link system when you encrypt a password in a database and...
    3. How to secure database password? (was Perl/DBI newbie: password storage / security question)
      Hello, Many thanks to R. Joseph Newton, Motherofperls, essential quint and Chuck Fox for answering my questions, however it is still not what I...
    4. How to secure database password? (was Perl/DBI newbie: password stora...
      The only solutions I've discovered is: ( for less secure tables) 1. Crypt the password 2. Put it into directory not in the public domain 3. Set...
    5. 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...
  3. #2

    Default Re: Email autosend password from database

    Compare the submitted answer with the value of challenge field and if it
    matches, use CFMAIL to send the password information to their registered email
    address and show the "email has been sent page". If their answer fails the
    test, display an error. You probably would want to limit the number of retries
    ....

    mxstu Guest

  4. #3

    Default Re: Email autosend password from database

    If you use SQL server you could do this with xp_sendmail If you don't want to use CFMAIL
    SQLMenace Guest

  5. #4

    Default Re: Email autosend password from database

    hi, i've never send email from sql.. do you need any SMTP install in order
    to use xp_sendmail on a sql server?


    "SQLMenace" <webforumsuser@macromedia.com> wrote in message
    news:dhr6fg$d1m$1@forums.macromedia.com...
    > If you use SQL server you could do this with xp_sendmail If you don't want
    > to use CFMAIL

    sc Guest

  6. #5

    Default Re: Email autosend password from database

    SQL Server does not wotk with SMTP (by default) to make it work with a SMTP server take a look at this

    [url]http://sqldev.net/xp/xpsmtp.htm[/url]

    SQLMenace 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