NGTmeaty Posted July 8, 2016 Report Posted July 8, 2016 Blesta does not want to send emails from any provider, including Gmail. Quote
0 Michael Posted July 8, 2016 Report Posted July 8, 2016 All I can say is well done can you post the following: - Are you using PHP Mail / SMTP? - Are you using a control panel? - Have you checked the server logs? - Have you checked if any script works? - Is the IP blacklisted? Just "I can't send emails" doesn't help you nor us. <?php //if "email" variable is filled out, send email if (isset($_REQUEST['email'])) { //Email information $admin_email = "someone@example.com"; $email = $_REQUEST['email']; $subject = $_REQUEST['subject']; $comment = $_REQUEST['comment']; //send email mail($admin_email, "$subject", $comment, "From:" . $email); //Email response echo "Thank you for contacting us!"; } //if "email" variable is not filled out, display the form else { ?> <form method="post"> Email: <input name="email" type="text" /><br /> Subject: <input name="subject" type="text" /><br /> Message:<br /> <textarea name="comment" rows="15" cols="40"></textarea><br /> <input type="submit" value="Submit" /> </form> <?php } ?> From: http://www.inmotionhosting.com/support/website/sending-email-from-site/using-the-php-mail-function-to-send-emails Another tool: https://www.mail-tester.com Blacklist tool: http://mxtoolbox.com/blacklists.aspx Quote
0 NGTmeaty Posted July 8, 2016 Author Report Posted July 8, 2016 - Are you using PHP Mail / SMTP? SMTP - Are you using a control panel? What do you mean by Control Panel? We have a control panel for our email. - Have you checked the server logs? I haven't been able to find them. - Have you checked if any script works? I have checked, some do. - Is the IP blacklisted? Nope. Quote
0 Michael Posted July 8, 2016 Report Posted July 8, 2016 - Are you using PHP Mail / SMTP? SMTP - Are you using a control panel? What do you mean by Control Panel? We have a control panel for our email. - Have you checked the server logs? I haven't been able to find them. - Have you checked if any script works? I have checked, some do. - Is the IP blacklisted? Nope. So your using SMTP, is the SMTP information correct? is the port open on the server? is the IP allowed to connect? And by control panel I meant for Blesta. Quote
0 NGTmeaty Posted July 8, 2016 Author Report Posted July 8, 2016 All SMTP info is correct, the port is indeed open, the IP is allowed to connect, and I am using a control panel for Blesta. Quote
0 evolvewh Posted July 8, 2016 Report Posted July 8, 2016 I think LIiensecart is asking what hosting control panel you use. If you have WHM or even cPanel only, you can trace all emails. Blesta of course sends emails as there are thousands of customers using it on a daily basis. It sounds like something related to your setup and we need more information to help and figure out the cause. Quote
Question
NGTmeaty
Blesta does not want to send emails from any provider, including Gmail.
5 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.