Send mail
Материал из Eludia.
Описание
Отправка сообщения по e-mail.
Синопсис (Perl 5)
send_mail ({
to => ['foo@bar.com', 'baz@bar.com'],
subject => 'Spam',
text => 'You win!!!',
});
my $item = sql_select_hash (...); my $file = sql_upload_file (...); send_mail ({ to => $id_user, subject => 'Notification', template => 'notification.htm', data => $item, content_type => 'text/html', href => "/?type=this_type&id=$_REQUEST{id}", attach => $file, });
