+ 1
Please tell me how to send a letter in php. My code⬇️
3 Réponses
+ 2
Removing some of the spaces should make it work. Btw, you can't send emails from SoloLearn, you will have to run it locally from your device for that. Try this:
<?php
$result= mail("email@.gmail.com","test","test");
var_dump($result);
?>
0
Thank:)
0
I tried to create an html page and use php but it didn’t work🙁