-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sending Fails Silently #95
Comments
+1 |
+1 - Did you ever figure out what was wrong? I'm dealing with something similar. :( |
+1 |
This could be related to my thoughts of having form submissions be placed into a queue (with a cron set to trigger the queue consistently). I started looking into this but ended up using a different method for my needs. I wasn't sure if it would be a best practice or not to use default Craft/Yii queue (or better to set up a separate one). For sensitive contact information I didn't want them stored in the DB forever, but wanted them until confirm of being processed correctly. If something goes wrong (e.g SMTP fails for whatever reason) then it can be debugged and the queue processed again. |
+1 for at least being able to check to let the user know the email is technically successfully sent. It's pretty critical now that both clients trying to contact a company as well as companies needing to know that a (potential) client is trying to reach them aren't aware that a mail couldn't even be sent. |
+1 in 2023 |
+1 in 2024 In Mailer.php, mail is sent in this code block at Line 115:
Seems from history of this post that this problem was handled in the earlier version of this plugin: I am interested to know if there is a reason why this has not been implemented in the current version? |
Feature request: add error reporting to the controller action
actionSendMessage()
when email sending fails.When email sending fails, there is no error reporting so the user may assume that the form was successfully sent when in fact it was not. This was a major issue on a site I recently worked on, in which the client lost a week of contact form submissions due to the sending failing silently.
The text was updated successfully, but these errors were encountered: