ช่วยแนะนำ สคริป php สำหรับส่งเมล์หน่อยครับ

เริ่มโดย somsak1, 06 มกราคม 2017, 11:18:27

หัวข้อก่อนหน้า - หัวข้อถัดไป

0 สมาชิก และ 1 ผู้มาเยือน กำลังดูหัวข้อนี้

somsak1

ช่วยแนะนำ สคริป php ง่ายๆ แบบไม่ใช้ฐานข้อมูล มีฟอร์ม เพื่อกรอกข้อมูล จากหน้าเว็บ เอาไว้สำหรับส่งเมล์หน่อยครับ
ขอบคุณครับ :wanwan017:
[direct=https://voice.botnoi.ai/invite?code=KTEL5TOPELDF8TAO3MQK]
[/direct]
[direct=https://voice.botnoi.ai/invite?code=KTEL5TOPELDF8TAO3MQK]AI สร้างเสียงสังเคราะห์ พัฒนาโดยคนไทย(เอาไว้ทำเสียงพากย์)[/direct]
[direct=https://client.hostinglotus.com/aff.php?aff=101]โฮสติ้งราคาประหยัด ใช้งานได้จริง[/direct]
[direct=https://ssm-th.com/ref/fel81]เพิ่มยอดไลค์ ยอดวิว (ฉบับเร่งด่วน)[/direct]

beerqazasa


ic-man

แปะแล้วแก้ e-mail เอานะครับ ใช้ได้เลย
เอามาจาก stackoverflow อีกที
<?php 
if(isset($_POST['submit'])){
    
$to "[email protected]"// this is your Email address
    
$from $_POST['email']; // this is the sender's Email address
    
$first_name $_POST['first_name'];
    
$last_name $_POST['last_name'];
    
$subject "Form submission";
    
$subject2 "Copy of your form submission";
    
$message $first_name " " $last_name " wrote the following:" "\n\n" $_POST['message'];
    
$message2 "Here is a copy of your message " $first_name "\n\n" $_POST['message'];

    
$headers "From:" $from;
    
$headers2 "From:" $to;
    
mail($to,$subject,$message,$headers);
    
mail($from,$subject2,$message2,$headers2); // sends a copy of the message to the sender
    
echo "Mail Sent. Thank you " $first_name ", we will contact you shortly.";
    
// You can also use header('Location: thank_you.php'); to redirect to another page.
    
}
?>


<!DOCTYPE html>
<head>
<title>Form submission</title>
</head>
<body>

<form action="" method="post">
First Name: <input type="text" name="first_name"><br>
Last Name: <input type="text" name="last_name"><br>
Email: <input type="text" name="email"><br>
Message:<br><textarea rows="5" name="message" cols="30"></textarea><br>
<input type="submit" name="submit" value="Submit">
</form>

</body>
</html>

 *Link Removed*
*Link Removed*

somsak1

ได้แล้วครับ ขอบคุณทั้งสองท่านมากๆ :wanwan017:
[direct=https://voice.botnoi.ai/invite?code=KTEL5TOPELDF8TAO3MQK]
[/direct]
[direct=https://voice.botnoi.ai/invite?code=KTEL5TOPELDF8TAO3MQK]AI สร้างเสียงสังเคราะห์ พัฒนาโดยคนไทย(เอาไว้ทำเสียงพากย์)[/direct]
[direct=https://client.hostinglotus.com/aff.php?aff=101]โฮสติ้งราคาประหยัด ใช้งานได้จริง[/direct]
[direct=https://ssm-th.com/ref/fel81]เพิ่มยอดไลค์ ยอดวิว (ฉบับเร่งด่วน)[/direct]