Jump to content

Question

5 answers to this question

Recommended Posts

  • 0
Posted

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

  • 0
Posted

- 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.

  • 0
Posted

 

- 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.

  • 0
Posted

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.

Join the conversation

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

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  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.

Loading...
×
×
  • Create New...