Hackerss.com

Hackerss.com is a community of amazing hackers

Hackerss is a community for developers, data scientitst, ethical hackers, hardware enthusiasts or any person that want to learn / share their knowledge of any aspect of digital technology.

Create account Log in
hackerss
hackerss

Posted on

How to send an email in Php

How to send an email - Php:


<?php

//create a function that How to send an email with comments
function sendEmail($to, $subject, $message) {
  //send email
  mail($to, $subject, $message);
}

//example
sendEmail('[email protected]', 'Hello', 'Hello John');


Enter fullscreen mode Exit fullscreen mode

Top comments (0)