ljr/ljcom/htdocs/dev/mailtest.bml

15 lines
393 B
Plaintext
Raw Permalink Normal View History

2019-02-05 21:49:12 +00:00
<?_code
if ($FORM{'mail'} == 1) {
LJ::send_mail({ 'to' => 'bradfitz@bradfitz.com',
'from' => 'lj_dontreply@livejournal.com',
'fromname' => 'Happy Happy Place',
'subject' => 'this is but a test',
'body' => 'this is all.'
});
return "mailed";
}
return "enter code.";
_code?>