-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemail.php
88 lines (69 loc) · 3 KB
/
email.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
$postdata = file_get_contents('php://input');
$request = json_decode($postdata);
$firstname = $request->firstname;
$lastname = $request->lastname;
$email = $request->email;
$subject = $request->subject;
$message = $request->message;
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
$headers .= 'From: Portfolio <[email protected]>' . "\r\n";
mail('[email protected]',$subject,$postdata,$headers);
////////////////////////////////////////////////////////////////////////////////////////////////////
//recipient
$to = $email;
//sender
$from = '[email protected]';
$fromName = 'Vedant Bhoj';
//email subject
$subject = 'Thank you for contacting Vedant Bhoj';
//attachment file path
$file = "Vedant Rajay Bhoj Resume.pdf";
//email body content
$htmlContent = 'Thank you for contacting me. <br> Attached is my Resume.<br> Vedant Bhoj <br> Phone: +1(669)220-9769 <br>Email: [email protected]';
//header for sender info
$headers = "From: $fromName"." <".$from.">";
//boundary
$semi_rand = md5(time());
$mime_boundary = "==Multipart_Boundary_x{$semi_rand}x";
//headers for attachment
$headers .= "\nMIME-Version: 1.0\n" . "Content-Type: multipart/mixed;\n" . " boundary=\"{$mime_boundary}\"";
//multipart boundary
$message = "--{$mime_boundary}\n" . "Content-Type: text/html; charset=\"UTF-8\"\n" .
"Content-Transfer-Encoding: 7bit\n\n" . $htmlContent . "\n\n";
//preparing attachment
if(!empty($file) > 0){
if(is_file($file)){
$message .= "--{$mime_boundary}\n";
$fp = @fopen($file,"rb");
$data = @fread($fp,filesize($file));
@fclose($fp);
$data = chunk_split(base64_encode($data));
$message .= "Content-Type: application/octet-stream; name=\"".basename($file)."\"\n" .
"Content-Description: ".basename($file)."\n" .
"Content-Disposition: attachment;\n" . " filename=\"".basename($file)."\"; size=".filesize($file).";\n" .
"Content-Transfer-Encoding: base64\n\n" . $data . "\n\n";
}
}
$message .= "--{$mime_boundary}--";
$returnpath = "-f" . $from;
//send email
$mail = @mail($to, $subject, $message, $headers, $returnpath);
//email sending status
echo $mail;
////////////////////////////////////////////////////////////////////////////////////////////////////
// $ressubject = "Thank you for contacting Vedant Bhoj";
// $resmessage = "Thank you for contacting me.<br> Vedant Bhoj <br> Phone: +1(669)220-9769 <br>Email: [email protected]";
// $resheaders = "MIME-Version: 1.0" . "\r\n";
// $resheaders .= "Content-type:text/html;charset=UTF-8" . "\r\n";
// $resheaders .= 'From: Vedant Bhoj <[email protected]>' . "\r\n";
// $resheaders .= 'Reply-To: Vedant Bhoj <[email protected]>' . "\r\n";
// mail($email,$ressubject,$resmessage,$resheaders);
//future add this to DataBase
// echo $firstname;
// echo $lastname;
// echo $email;
// echo $subject;
// echo $message;
?>