Jump to content

[SOLVED] Upgrade or delete row?


CMC

Recommended Posts

Ok,

 

I've got a contact script, everything works fine. Processes the information, stores it in the DB, emails the user with a confirmation link (avoid spam). It all works great. My question is, what do you think the better option is? I'll explain. The confirmation script checks the key its received in the URL against a database table, if it finds anything it checks whether or not an email has already been sent using that key. If it has, it shows the appropriate error. If it hasn't, the information is pulled out and then mailed. Now here is where my question comes into play. Currently, I've got the script updating the row to show that the mail has been sent, so the same email can't be sent again. I was wondering if just deleting the entire row would be more efficient.

 

What do you think? Delete the row or just update it?

 

Thanks

-CMC

Link to comment
Share on other sites

Most likely deleting would be more efficient. Less resource usage, less chance of someone gaining access and seeing the information in its raw, unencrypted form.

What I'm wondering is why would the email be sent again after confirmation? Another thing, why do you store the email in the database? I can kinda see why if they need to request another confirmation, but then again if they don't end up confirming their account after a specified time period the user account waiting to be activated should be freed up...

Link to comment
Share on other sites

Ah perhaps I was a bit unclear. This isn't part of a user-system. Anyone can send an email.

I'll reexplain the process.

The user starts by filling out the form, hits the button and the form processes it. Before the form sends the information to me, it sends the user an email containing a confirmation link: ex link: www.example.com/confirm.php?key=123456. Once they click the link, confirm.php checks a database whether that key exists, and if it does, it checks whether their email (being sent to me) has been sent (checks a row mail_sent). If mail_sent is 0, that means the email has not been sent. Then, the script pulls all of the information out of the database and mails it to me. Is this any clearer?

 

As for storing the email, when their email is finally sent to me, I pull their email address from the database and place it in the header so I can reply directly to them if need be.

 

Anyways I've gone ahead with your suggestion and changed the script so that it deletes the row after.

Thanks for the advice :)

Link to comment
Share on other sites

I think I understand what you're saying now...

If you only want to use the email address after the message is sent, you can probably set the Reply-To flag in your email header so that it attaches the return address there, eliminating the need to cross-reference in your database. Therefore, you can probably delete the message, and also remove the mail_sent field. You can also attach more information to your email, such as their IP-address, if abuse or something like that gets to be a problem.

If you want to keep records on your message other than in your email, then you'll want to stay with your original design.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.