Method of exchanging digital messages from an author to one or more recipients.

learn more… | top users | synonyms (1)

16
votes
6answers
1k views

Are there any open vulnerabilities in this mailer script?

I made a PHP mailer script does the basic validation of fields, return errors, else submit if all is good. But it also has a honeypot field that is not required to be filled in (I'm assuming by hiding ...
6
votes
1answer
317 views

Security of a “contact us” form

I have a form, which uses AJAX to send POST data to the following controller method: ...
3
votes
3answers
604 views

Email text validator

I'm using this pattern for the first time and wanted to check if this is the correct implementation. class.validator.strategy.php ...
4
votes
2answers
1k views

phpMailer script for a contact form

I've just downloaded a script and would like to use it as a contact form on my site. The problem is I'm a front-end dev with little knowledge of securing PHP code. So, could you please have a look and ...
5
votes
2answers
117 views

MailQueue implementation with auto start - stop

Previous question was a little portion of the mailQueue. I finished the MailQueue, which has the ability to start and stop ...
2
votes
2answers
79 views

ConcurrentLinkedQueue to unmodifiable list

I have a ConcurrentLinkedQueue where I put some mails in. Now I have a visual page where I want to see what's in the Queue, but ...
2
votes
2answers
235 views

Preventing email injection

I have asked a question on Stack Overflow and one of the guys actually managed to hack my contact form and inject a fake email into the $header of the PHP! So ...