7 lines
103 B
PHP
7 lines
103 B
PHP
|
|
|
|
<?php
|
|
|
|
var_dump( mail( 'coreyverret@gmail.com', '', 'This was sent with PHP.' ) ); // bool(true)
|
|
|
|
?>
|