У меня есть проблема, у меня есть форма, которую пользователь загружает изображение и предполагает отправить на нашу электронную почту в виде вложения. Поскольку я новичок в Pear Mail (требуется моим хостинг-провайдером), мне нужно несколько советов о том, как действовать из приведенного ниже кода, так как я разбил две части, которые, как я думал, будут работать, но просто отправляю ошибки сервера. Имейте в виду, что вся почта Pear установлена на сервере уже моим хостингом. Код ниже:
<?php
ini_set('display_errors', 'On');
error_reporting(E_ALL);
?>
<?php
if(isset($_POST['email'])) {
require_once "Mail.php"; //PEAR mail is already installed in our current environment
require_once "mime.php";
$email_to = ""; //Enter the email you want to send the form to
$email_subject = "Pawn Request"; // You can put whatever subject here
$host = "smtp.hostmanagement.net"; // The hostname of your mail server
// If your email is with HostMySite, use the actual hostname of your mail server, for example:
// SmarterMail: mailXX.safesecureweb.com OR win-mailXX.hostmanagement.net
// OpenX-change: smtp.hostmanagement.net
// Contact Support if you aren't sure what to enter here.
$username = ""; // A valid email address you have setup
$from_address = ""; // If your mail is hosted with HostMySite this has to match the email address above
$password = ""; // Password for the above email address
$reply_to = ""; //Enter the email you want customers to reply to
$port = "587"; // This is the default port. Try port 50 if this port gives you issues and your mail is hosted with HostMySite
function died($error) {
// your error code can go here
echo "We are very sorry, but there were error(s) found with the form you submitted. ";
echo "These errors appear below.<br /><br />";
echo $error."<br /><br />";
echo "Please go back and fix these errors.<br /><br />";
die();
}
// Validate expected data exists
if(!isset($_POST['first_name']) || !isset($_POST['last_name']) || !isset($_POST['price']) || !isset($_POST['email']) || !isset($_POST['phone']) || !isset($_POST['message'])) {
died('We are sorry, but there appears to be a problem with the form you submitted.');
}
$first_name = $_POST['first_name']; // required
$last_name = $_POST['last_name']; // required
$price = $_POST['price']; // not required
$email = $_POST['email']; // required
$mobile = $_POST['phone']; // not required
$message = $_POST['message']; // required
$image = $_POST['image'];
$error_message = "";
$email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
if(!preg_match($email_exp,$email)) {
$error_message .= 'The Email Address you entered does not appear to be valid.<br />';
}
$string_exp = "/^[A-Za-z .'-]+$/";
if(!preg_match($string_exp,$first_name)) {
$error_message .= 'The First Name you entered does not appear to be valid.<br />';
}
if(!preg_match($string_exp,$last_name)) {
$error_message .= 'The Last Name you entered does not appear to be valid.<br />';
}
if(strlen($message) < 2) {
$error_message .= 'The Comments you entered do not appear to be valid.<br />';
}
if(strlen($error_message) > 0) {
died($error_message);
}
$email_message = "Form details below.\n\n";
function clean_string($string) {
$bad = array("content-type","bcc:","to:","cc:","href");
return str_replace($bad,"",$string);
}
$email_message .= "First Name: ".clean_string($first_name)."\n";
$email_message .= "Last Name: ".clean_string($last_name)."\n";
$email_message .= "Price: ".clean_string($price)."\n";
$email_message .= "Email: ".clean_string($email)."\n";
$email_message .= "Phone Number: ".clean_string($mobile)."\n";
$email_message .= "Comments: ".clean_string($message)."\n";
// This section creates the email headers
$auth = array('host' => $host, 'auth' => true, 'username' => $username, 'password' => $password, 'port' => $port);
$headers = array('From' => $from_address, 'To' => $email_to, 'Subject' => $email_subject, 'Reply-To' => $reply_to);
// This section send the email
$smtp = Mail::factory('smtp', $auth);
$mail = $smtp->send($email_to, $headers, $email_message);
$mail->addHTMLImage($image);
if (PEAR::isError($mail)) {?>
<!-- include your own failure message html here -->
<?php
header('location:fail.htm');
?>
<!-- Uncomment the line below to see errors with sending the message -->
<!--<?php echo("<p>". $mail->getMessage()."</p>"); ?> -->
<?php } else { ?>
<?php
header('location:success.htm');
?>
<?php } } ?>
Я удалил информацию о хостинге по понятным причинам. Спасибо за любую помощь, которую вы оказываете !!!
РЕДАКТИРОВАТЬ:
Это мой HTML-код для загрузки изображения, если это поможет.
`<div class="form-group">
<label class="control-label">Upload Photos (required) </label>
<input name="image" id="input-22" type="file" class="file" accept="image/*" multiple=true data-preview-file-type="text" data-preview-class="bg-warning">
</div>`
Задача ещё не решена.
Других решений пока нет …