PHP mail() Function
https://www.w3schools.com/php/func_mail_mail.asp
<?php
// the message
$msg = "First line of text\nSecond line of text";
// use wordwrap() if lines are longer than 70 characters
$msg = wordwrap($msg,70);
// send email
mail("someone@example.com","My subject",$msg);
?>
PreviousHướng dẫn tạo mật khẩu ứng dụng cho Gmail (ok)NextHow to Install Sendmail on Ubuntu 18.04 & 16.04 LTS
Last updated
Was this helpful?