1<?php
2$to = $_POST['email'];
3$subject = "Email Subject";
4
5$message = 'Dear '.$_POST['name'].',<br>';
6$message .= "We welcome you to be part of family<br><br>";
7$message .= "Regards,<br>";
8
9// Always set content-type when sending HTML email
10$headers = "MIME-Version: 1.0" . "\r\n";
11$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
12
13// More headers
14$headers .= 'From: <enquiry@example.com>' . "\r\n";
15$headers .= 'Cc: myboss@example.com' . "\r\n";
16
17mail($to,$subject,$message,$headers);
18?>
1<?php
2$to = 'nobody@example.com';
3$subject = 'the subject';
4$message = 'hello';
5$headers = 'From: Jack Sparrow <jsparrow@blackpearl.com>' . PHP_EOL .
6 'Reply-To: Jack Sparrow <jsparrow@blackpearl.com>' . PHP_EOL .
7 'X-Mailer: PHP/' . phpversion();
8
9mail($to, $subject, $message, $headers);
10?>
1<?php
2 mail("recipient@example.com",
3 "This is the message subject",
4 "This is the message body",
5 "From: sender@example.com" . "\r\n" . "Content-Type: text/plain; charset=utf-8",
6 "-fsender@example.com");
7?>
1// use this library -> https://github.com/PHPMailer/PHPMailer
2
3<?php
4use PHPMailer\PHPMailer\PHPMailer;
5use PHPMailer\PHPMailer\SMTP;
6use PHPMailer\PHPMailer\Exception;
7function sendEmail(){
8 require 'phpmailer/vendor/autoload.php';
9
10 //Create an instance; passing `true` enables exceptions
11 $mail = new PHPMailer(true);
12 $mail->CharSet = 'UTF-8';
13 try {
14 $receiver = 'test@gmail.com';
15 $name = 'Name';
16
17 //Server settings
18 $mail->SMTPDebug = 1; //Enable verbose debug output
19 $mail->isSMTP(); //Send using SMTP
20 $mail->Host = 'tls://smtp.gmail.com'; //Set the SMTP server to send through
21 $mail->SMTPAuth = true; //Enable SMTP authentication
22 $mail->Username = 'username@gmail.com'; //SMTP username
23 $mail->Password = 'PASSWORD'; //SMTP password
24 $mail->SMTPSecure = tls; //Enable implicit TLS encryption
25 $mail->Port = 587; //TCP port to connect to; use 587 if you have set `SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS`
26
27 //Recipients
28 $mail->From = 'test@gmail.com';
29 $mail->setFrom('test@gmail.com', 'Name');
30 $mail->addAddress($receiver, $name); //Add a recipient
31
32 //Content
33 $mail->isHTML(true); //Set email format to HTML
34 $mail->Subject = 'Subject';
35 $mail->Body = 'Body';
36
37 $mail->send();
38 echo 'Message has been sent';
39 } catch (Exception $e) {
40 echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}";
41 }
42}
43?>
1<?php
2require 'PHPMailerAutoload.php';
3
4$mail = new PHPMailer;
5
6//$mail->SMTPDebug = 3; // Enable verbose debug output
7
8$mail->isSMTP(); // Set mailer to use SMTP
9$mail->Host = 'smtp1.example.com;smtp2.example.com'; // Specify main and backup SMTP servers
10$mail->SMTPAuth = true; // Enable SMTP authentication
11$mail->Username = 'user@example.com'; // SMTP username
12$mail->Password = 'secret'; // SMTP password
13$mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted
14$mail->Port = 587; // TCP port to connect to
15
16$mail->setFrom('from@example.com', 'Mailer');
17$mail->addAddress('joe@example.net', 'Joe User'); // Add a recipient
18$mail->addAddress('ellen@example.com'); // Name is optional
19$mail->addReplyTo('info@example.com', 'Information');
20$mail->addCC('cc@example.com');
21$mail->addBCC('bcc@example.com');
22
23$mail->addAttachment('/var/tmp/file.tar.gz'); // Add attachments
24$mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name
25$mail->isHTML(true); // Set email format to HTML
26
27$mail->Subject = 'Here is the subject';
28$mail->Body = 'This is the HTML message body <b>in bold!</b>';
29$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
30
31if(!$mail->send()) {
32 echo 'Message could not be sent.';
33 echo 'Mailer Error: ' . $mail->ErrorInfo;
34} else {
35 echo 'Message has been sent';
36}
1<?php
2 //Sending mail from contact form page.
3 // It works perfectly for me.
4 //Edit it and make it your own.
5
6
7 $to = "example.com@gmail.com";
8 $from = $_POST['email'];
9 $name = $_POST['name'];
10 $subject = $_POST['subject'];
11 $number = $_POST['number'];
12 $cmessage = $_POST['message'];
13
14 $headers = "From: $from";
15 $headers = "From: " . $from . "\r\n";
16 $headers .= "Reply-To: ". $from . "\r\n";
17 $headers .= "MIME-Version: 1.0\r\n";
18 $headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
19
20 $subject = "You have a message from your Bitmap Photography.";
21
22 $logo = 'img/logo.png';
23 $link = '#';
24
25 $body = "<!DOCTYPE html><html lang='en'><head><meta charset='UTF-8'><title>Express Mail</title></head><body>";
26 $body .= "<table style='width: 100%;'>";
27 $body .= "<thead style='text-align: center;'><tr><td style='border:none;' colspan='2'>";
28 $body .= "<a href='{$link}'><img src='{$logo}' alt=''></a><br><br>";
29 $body .= "</td></tr></thead><tbody><tr>";
30 $body .= "<td style='border:none;'><strong>Name:</strong> {$name}</td>";
31 $body .= "<td style='border:none;'><strong>Email:</strong> {$from}</td>";
32 $body .= "</tr>";
33 $body .= "<tr><td style='border:none;'><strong>Subject:</strong> {$csubject}</td></tr>";
34 $body .= "<tr><td></td></tr>";
35 $body .= "<tr><td colspan='2' style='border:none;'>{$cmessage}</td></tr>";
36 $body .= "</tbody></table>";
37 $body .= "</body></html>";
38
39 $send = mail($to, $subject, $body, $headers);
40
41?>