1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-11-12 21:22:28 +01:00
polr/sgmail.php

12 lines
209 B
PHP

<?php
require_once 'req.php';
class sgmail {
public function sendmail($to, $subject, $message) {
mail($to,$subject,$message); // feel free to edit, if you use services such as SendGrid
}
}