Files
register/marko_unpacked/marko/cms/mail.php
T
Admin Nasledstvo ac168868ee Initial import
2026-05-01 20:52:04 +03:00

9 lines
242 B
PHP

<?php
try {
ini_set('sendmail_from', 'coe@nasledstvo.bg');
$res = mail('vasilef@gmail.com', 'this is te subj', 'this is the msg', 'From: coe@nasledstvo.bg');
var_dump($res);
} catch (Exception $e) {
die('Message not sent');
}