How to use php mail with SpiderBasic
Posted: Wed Aug 26, 2020 1:53 pm
Hello everybody,
I'd like to send a mail from my web application using a simple php script, such as
But how to send a string from SpiderBasic to the php script? Can anybody help?
I'd like to send a mail from my web application using a simple php script, such as
Code: Select all
<?php
$subject = "Subject for message"
$message = "Message text to send";
mail("someone@example.com", $subject, $message);
?>