我正在尝试向自己发送一封电子邮件,以测试联系表单是否有效,但是在我的邮件收件箱中没有收到任何数据。我出错的地方有哪些提示?欢呼声
https://jsfiddle.net/hne3j8z9/
PHP
<?php
$target_dir = "uploads/"; "upload-saves.php"
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
$uploadOk = 1;
$imageFileType = pathinfo($target_file,PATHINFO_EXTENSION);
// Check if image file is a actual image or fake image
if(isset($_POST["submit"])) {
$check = getimagesize($_FILES["fileToUpload"]["tmp_name"]);
if($check !== false) {
echo "File is an image - " . $check["mime"] . ".";
$uploadOk = 1;
} else {
echo "File is not an image.";
$uploadOk = 0;
}
}
// Check if file already exists
if (file_exists($target_file)) {
echo "Sorry, file already exists.";
$uploadOk = 0;
}
// Check file size
if ($_FILES["fileToUpload"]["size"] > 500000) {
echo "Sorry, your file is too large.";
$uploadOk = 0;
}
// Allow certain file formats
if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg" && $imageFileType != "docx" && $imageFileType != ".pdf"
&& $imageFileType != "gif" ) {
echo "Sorry, only JPG, JPEG, PNG & GIF files are allowed.";
$uploadOk = 0;
}
// Check if $uploadOk is set to 0 by an error
if ($uploadOk == 0) {
echo "Sorry, your file was not uploaded.";
// if everything is ok, try to upload file
} else {
if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
echo "The file ". basename( $_FILES["fileToUpload"]["name"]). " has been uploaded.";
} else {
echo "Sorry, there was an error uploading your file.";
}
}
?>
HTML
<form action="http://www.cs.tut.fi/cgi-bin/run/~jkorpela/echo.cgi" method="post">
<div>
<h2>Bewerbungsformular</h2>
<label for="name">Vorname*</label>
<input type="text" id="name" name="user_name">
</div>
<div>
<label for="mail">Nachname*</label>
<input type="email" id="mail" name="user_email">
</div>
<div>
<label for="msg">E-Mail*</label>
<textarea id="msg" name="user_message"></textarea>
</div>
<div>
<label for="msg">Telefon*</label>
<textarea id="msg" name="user_message"></textarea>
</div>
<div>
<label for="msg">Arbeitsbeginn ab*</label>
<textarea id="msg" name="user_message"></textarea>
</div>
<div>
<form action="upload.php" method="post" enctype="multipart/form-data">
<p>Lebenslauf und Beilagen</p>
<div class="image-upload">
<label for="file-input">
<img src="upload.png"/>
</label>
<input id="file-input" type="file"/>
</form>
</div>
<div class="button">
<a href="mailto:example@email.com"></a>
<button type="submit">Send your message</button>
</div>
</form>
<div class= swiss>
<img src="swissstaffing_sqs_logo_cmyk.png" />
</div>
</div>
</body>
</html>
答案 0 :(得分:1)
您有2个选项,请按照其中一个
a
标记中添加一些文字,例如<a href="mailto:alexjames.willi@gmail.com">Mail Me</a>
或<a href="mailto:alexjames.willi@gmail.com">alexjames.willi@gmail.com</a>
display:inline-block
a
标记添加宽度,高度,背景和<a href="mailto:alexjames.willi@gmail.com" style="width:100px; height:100px; display:inline-block"></a>
醇>
答案 1 :(得分:1)
您不会将任何数据发送到您自己的电子邮箱,因为mailto
会打开您的默认邮件程序并准备一封新的空白电子邮件发送。
如果您想发送一封包含表单中的帖子数据的电子邮件给自己,您应该使用php,并将收件人更改为您自己的电子邮件地址...
希望这有帮助。