Jump to content
  • 0

Не работает чужой код?


diargon345
 Share

Question

Код:

<?phpif (isset ($_POST['contactFF'])) {  $output = '<p style="color: green">Ваше сообщение получено, спасибо!</p>';  $to = "diargon345@mail.ru"; // поменять на свой адрес  $from = $_POST['contactFF'];  $subject = "Заполнена контактная форма с ".$_SERVER['HTTP_REFERER'];  $message = "Имя: ".$_POST['nameFF']."\nEmail: ".$from."\nСообщение: ".$_POST['messageFF'];  $attachment = chunk_split(base64_encode(file_get_contents($_FILES['fileFF']['tmp_name'])));  $filename = $_FILES['fileFF']['name'];  $filetype = $_FILES['fileFF']['type'];  $boundary = md5(date('r', time()));  $headers = "From: " . $from . "\r\n";  $headers .= "Reply-To: " . $from . "\r\n";  $headers .= "MIME-Version: 1.0\r\n";  $headers .= "Content-Type: multipart/mixed; boundary=\"_1_$boundary\"";  $message="--_1_$boundaryContent-Type: multipart/alternative; boundary=\"_2_$boundary\"--_2_$boundaryContent-Type: text/plain; charset=\"utf-8\"Content-Transfer-Encoding: 7bit$message--_2_$boundary----_1_$boundaryContent-Type: \"$filetype\"; name=\"$filename\"Content-Transfer-Encoding: base64Content-Disposition: attachment$attachment--_1_$boundary--";  mail($to, $subject, $message, $headers);}?><!DOCTYPE HTML><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>Контактная форма</title><head><style>#feedback-form {  max-width: 550px;  padding: 2%;  border-radius: 3px;  background: #f1f1f1;}#feedback-form label {  float: left;  display: block;  clear: right;}#feedback-form .w100 {  float: right;  max-width: 400px;  width: 97%;  margin-bottom: 1em;  padding: 1.5%;}#feedback-form .border {  border-radius: 1px;  border-width: 1px;  border-style: solid;  border-color: #C0C0C0 #D9D9D9 #D9D9D9;  box-shadow: 0 1px 1px rgba(255,255,255,.5), 0 1px 1px rgba(0,0,0,.1) inset;}#feedback-form .border:focus {  outline: none;  border-color: #abd9f1 #bfe3f7 #bfe3f7;}#feedback-form .border:hover {  border-color: #7eb4ea #97cdea #97cdea;}#feedback-form .border:focus::-moz-placeholder {  color: transparent;}#feedback-form .border:focus::-webkit-input-placeholder {  color: transparent;}#feedback-form .border:not(:focus):not(:hover):valid {  opacity: .4;}#submitFF {  padding: 2%;  border: none;  border-radius: 3px;  box-shadow: 0 0 0 1px rgba(0,0,0,.2) inset;  background: #669acc;  color: #fff;}#feedback-form br {  height: 0;  clear: both;}#submitFF:hover {  background: #5c90c2;}#submitFF:focus {  box-shadow: 0 1px 1px #fff, inset 0 1px 2px rgba(0,0,0,.8), inset 0 -1px 0 rgba(0,0,0,.05);}</style><?php echo $output; ?></head><body><form enctype="multipart/form-data" method="post" id="feedback-form"><label for="nameFF">Имя:</label><input type="text" name="nameFF" id="nameFF" required placeholder="например, Иван Иванович Иванов" x-autocompletetype="name" class="w100 border"><label for="contactFF">Email:</label><input type="email" name="contactFF" id="contactFF" required placeholder="например, ivan@yandex.ru" x-autocompletetype="email" class="w100 border"><label for="fileFF">Прикрепить файл:</label><input type="file" name="fileFF" id="fileFF" class="w100"><label for="messageFF">Сообщение:</label><textarea name="messageFF" id="messageFF" required rows="5" placeholder="Детали заявки…" class="w100 border"></textarea><br><input value="Отправить" type="submit" id="submitFF"></form></body>

Материал взял отсюда.

Если прикрепить файл, то письмо не отправляется. Если не прикреплять, то отправляется с пустым файлом и с сообщением об ошибке в 11 строчке.

Вопроса 2:

Что нужно сделать чтоб отправлялась почта с прикриплёном файлом?

Что написать в коде, если файл не был загружен?

 

P.S.: Я не просто так остановился на чужом (видимо кривом коде). Этот код очень схож с моим. И поскольку я новичок в php, мне такой код будет проще.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Отправка файлов - это очень непростая тема. Да ещё и отлаживать её тяжело. Есть замечательный скрипт PHPMailer, попробуйте использовать его. По нему тонны информации и он прост в настройке.

Link to comment
Share on other sites

  • 0

Отправка файлов - это очень непростая тема. Да ещё и отлаживать её тяжело. Есть замечательный скрипт PHPMailer, попробуйте использовать его. По нему тонны информации и он прост в настройке.

У меня уже есть код. Осталось добавить прикрепление файлов. Если я буду использовать другие классы, то мне придётся всё переделывать.

Link to comment
Share on other sites

  • 0

рабочий скрипт, подстраивайте под себя:

<?php	$date = date("Y-m-d H:i:s");	if(empty($contact_name) or strlen($contact_name) < 5) {		$error1 = 'Контактное лицо?';	} else $error1 = NULL;	if(!preg_match("/^((8|\+7)[\- ]?)?(\(?\d{3}\)?[\- ]?)?[\d\- ]{7,10}$/", $phone) ) {		$error2 = 'Телефон, факс?';	} else $error2 = NULL;	if(!filter_var($email, FILTER_VALIDATE_EMAIL)) {		$error3 = 'Email?';	} else $error3 = NULL;	if(empty($error1) and empty($error2) and empty($error3)) {		$body .= '		<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">		<html>			<head>				<title>'.$subject.'</title>				<style media="screen" type="text/css">				body {					margin: 0;					padding: 0;					border: 0;					background: #fff;					text-align: center;				}				table {					padding: 5px;					margin: 5px auto;					border: #E2E2E2 solid 2px;					width: 90%;					text-align: center;				}				th {					width: auto;					padding: 5px;					margin: 5px;					text-align: center;					color: #a81524;				}				td {					border: #E2E2E2 solid 1px;					width: 100px;					padding: 5px;					margin: 5px;					text-align: center;					color: #333333;				}				</style>			</head>			<body>				<table>					<tr>						<th colspan="2"><font color="#fb5710">Данные о заказчике:</font></th>					</tr>					<tr>						<td>Контактное лицо:</td>						<td><strong>'.$contact_name.'</strong></td>					</tr>					<tr>						<td>Телефон:</td>						<td><strong>'.$phone.'</strong></td>					</tr>					<tr>						<td>Email:</td>						<td><strong>'.$email.'</strong></td>					</tr>					<tr>						<td>Дата отправки сообщения:</td>						<td><strong>'.$date.' г.</strong></td>					</tr>				</table>			</body>		</html>';		if(!empty($_FILES['file']['tmp_name']) and $_FILES['file']['error'] == 0) {			$filepath = $_FILES['file']['tmp_name'];			$filename = $_FILES['file']['name'];		} else {			$filepath = '';			$filename = '';		}		//$headers .= 'Cc: '.$email.'' . "\r\n"; копия		//$headers .= 'Bcc: '.$email.'' . "\r\n"; скрытая копия		$to = '<mail@mail.ru>'.', <mail@mail.ru>'; // можно на два email отправлять		function send_mail($to, $body, $email, $filepath, $filename) {			$subject = 'Опросный лист с сайта '.$_SERVER['HTTP_HOST'].'';			$boundary = "--".md5(uniqid(time()));			$headers = 'From: <info@'.$_SERVER['HTTP_HOST'].'>' . "\r\n"; // от кого отправлено			$headers .= 'To: <'.$email.'>' . "\r\n"; // кому отправлено			$headers .= "MIME-Version: 1.0\r\n";			$headers .= "Content-Type: multipart/mixed; boundary=\"".$boundary."\"\r\n";			$multipart = "--".$boundary."\r\n";			$multipart .= "Content-type: text/html; charset=\"utf-8\"\r\n";			$multipart .= "Content-Transfer-Encoding: quoted-printable\r\n\r\n";			$body = quoted_printable_encode( $body )."\r\n\r\n";			$multipart .= $body;			$file = '';			if(!empty($filepath)) {				$fp = fopen($filepath, "r");				if($fp) {					$content = fread($fp, filesize($filepath));					fclose($fp);					$file .= "--".$boundary."\r\n";					$file .= "Content-Type: application/octet-stream\r\n";					$file .= "Content-Transfer-Encoding: base64\r\n";					$file .= "Content-Disposition: attachment; filename=\"".$filename."\"\r\n\r\n";					$file .= chunk_split(base64_encode($content))."\r\n";				}			}			$multipart .= $file."--".$boundary."--\r\n";			if(mail($to, $subject, $multipart, $headers))				return true;			else				return false;		}		if(send_mail($to, $body, $email, $filepath, $filename)) {			echo '<p>Сообщение отправлено!<br />			<a href="javascript:history.back(1)">Вернуться назад</a></p>';		} else {			echo '<p>Ошибка - сообщение не отправлено!<br />			<a href="javascript:history.back(1)">Вернуться назад</a></p>';		}				} else {		echo '			<span class="error">'.$error1.'</span>			<span class="error">'.$error2.'</span>			<span class="error">'.$error3.'</span><br>			<a href="javascript:history.back(1)">Вернуться назад</a>';	}?>
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

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.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy