D
D
Daniil Vershinin2019-04-01 18:24:12
OctoberCMS
Daniil Vershinin, 2019-04-01 18:24:12

MailOctober CMS?

I insert it into the page code, an exception pops up /

function onStart() {
    $mail = '[email protected]'; # Адрес (или адреса через запятую) куда отправлять письмо
    $to = 'Александр'; # Поле кому
    $sender = '[email protected]'; # Адрес отправителя
    $from = 'Алла'; # Поле от кого
    $subj = 'Октябрь это круто'; # Тема письма
    $body ='<h1>Это заголовок</h1>А тут какой-то текст.'; # Тело письма (в формате html)
    
    $mail = explode(',',$mail); // Создали массив из писем если их много (или даже одно, не важно)
    	
    	if(Mail::send('empty', ['html' => htmlspecialchars_decode($body)],
                    function($message) use ($from, $mail, $to, $subj, $sender)
                    {
    	            $message->from($sender, $from);
    	            $message->to($mail, $to);
    	            $message->subject($subj);
    	        }))
            {
    	echo 'good';
    	} else {
    	echo 'not good';
    	}
}

5ca22cf55d9a7301253989.png
Why is that? Even examples from the documentation do not work (see previous question)

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question