9 lines
242 B
PHP
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');
|
|
}
|