最近我在将文件附加到电子邮件时遇到问题,我处理了,谢谢你们。现在我有下一个问题与“固定”附加文件有关。其实问题比我想象的要多。1)在下面的代码中,在验证插件中,我认为调用类似“name:requred”这样的规则就足够了,但事实并非如此。为了使它起作用,我必须以 class="required" 的形式调用,为什么?当我删除 class="requred" 验证不再存在。
2)好的,所以 class="required",小问题,验证正在工作,但是 submitHandler 发生了什么?ajax 不运行,网站刷新,我收到成功消息。我的意思是发送带有附件的电子邮件而不刷新。
3)更糟糕的是,我写给uploaded_file规则的“消息”应该显示文件何时没有上传,没有出现,从标题属性(形式)进入。
所以一切都不是我应该做的。我应该修复/修复/更改什么才能使其正常工作?请帮我
代码: 形式:
<form method="post" name="formularzaplikacyjny" enctype="multipart/form-data" action="mail-attachment.php" id="formmail">
<div id="imiediv"><label for="name">Imię i nazwisko: <em>*</em> </label><br>
<input type="text" name="name" id="name" class="required" title="Wpisz swoje imię i nazwisko" placeholder="Jan Kowalski"></div><br>
<div id="emaildiv"><label for="email">Email: <em>*</em> </label><br>
<input type="text" name="email" class="required" id="email" title="Wpisz swój adres email" placeholder="twoj_adres_email@email.com"></div><br>
<div id="listdiv"><label for="message">List motywacyjny: <em>*</em></label><br>
<textarea name="message" rows="5" cols="48" class="required" id="message" title="Wpisz treść listu motywacyjnego" placeholder="Tutaj zpowinna znaleźć się treść Twojego listu motywacyjnego" ></textarea></div>
<div id="cvdiv"><label for="uploaded_file">Wybierz plik CV: <em>*</em></label><br>
<input type="file" name="uploaded_file" title="<h3>Wybierz plik CV do przesłania</h3>" class="required" id="uploaded_file"></div><br>
<input type="submit" value="Prześlij" name="submit" id="submitbutton">
</form>
<div id="loading-mail">
<h2>Wysyłamy maila.....</h2>
</div>
验证 :
$("#formmail").validate({
rules: {
email: {
required: true,
email: true
},
name: {
required: true
},
message: {
required: true
},
uploaded_file: {
requred: true
}
}, //koniec literału obiektowego rules
messages: {
email: {
required: "<h3>Podaj adres e-mail.</h3>",
email: "<h3>To nie jest prawidłowy <br>adres e-mail.</h3>"
},
name: {
required: "<h3>Podaj swoje imię i nazwisko.</h3>"
},
message: {
required: "<h3>Wpisz treść listu motywacyjnego.</h3>"
},
uploaded_file: {
requred: "<h3>Prześlij plik CV</h3>"
}
},submitHandler: function() {
var thisForm = $('#formmail');
$('#formmail').fadeOut(function(){
//Display the "loading" message
$("#loading-mail").fadeIn(function(){
//Post the form to the send script
$.ajax({
type: 'POST',
url: thisForm.attr("action"),
data: thisForm.serialize(),
//Wait for a successful response
success: function(data){
//Hide the "loading" message
$("#loading-mail").fadeOut(function(){
//Display the "success" message
$("#success").text(data).fadeIn();
});
}
});
});
});
}
}); // koniec funkcji validate
并发送脚本:
<?php
require "PHPMailer/class.phpmailer.php";
$mail = new PHPMailer(true); //New instance, with exceptions enabled
$mail->CharSet = "UTF-8";
$bodys="<b>Podanie od:</b> ".$_POST['name']."<br/>"."<b>Adres e-mail: </b>".$_POST['email']."<br/>"."<b>Treść listu motywacyjnego: </b><br/>".$_POST['message'];
$mail->Body =$bodys;
$mail->IsSMTP(); // tell the class to use SMTP
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->Port = 25; // set the SMTP server port
$mail->Host = "mail.xxx.linuxpl.info"; // SMTP server
$mail->Username = "username"; // SMTP server username
$mail->Password = "pass"; // SMTP server password
$mail->IsSendmail(); // tell the class to use Sendmail
$mail->AddReplyTo($_POST['email'],$_POST['name']);
$mail->From = $_POST['email']; //uzupełnij sobie
$mail->FromName = $_POST['name']; //uzupełnij sobie
$to = 'xxx@gmail.com'; //na jaki mail wysłać np ala@wp.pl
$mail->AddAddress($to);
$mail->Subject = "Nowe podanie o pracę";
$mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
$mail->WordWrap = 80; // set word wrap
$mail->MsgHTML($bodys);
$plik_tmp = $_FILES['uploaded_file']['tmp_name'];
$plik_rozmiar = $_FILES['uploaded_file']['size'];
$plik_nazwa = $_FILES['uploaded_file']['name'];
if(is_uploaded_file($plik_tmp)) {
$nazwa_g=$plik_nazwa;
move_uploaded_file($plik_tmp, 'tmp_zal/'.$nazwa_g);
$mail->AddAttachment('tmp_zal/'.$nazwa_g, $nazwa_g);
}
$mail->IsHTML(true); // send as HTML
if(!$mail->Send())
{
echo "Błąd";
echo "Kod błędu: " . $mail->ErrorInfo;
}
else
{
echo 'Wiadomość została wysłana';
}
?>