diff --git a/src/lib/sendmail.php b/src/lib/sendmail.php index 57dad00..b8729b9 100644 --- a/src/lib/sendmail.php +++ b/src/lib/sendmail.php @@ -305,11 +305,13 @@ namespace $view->start(); $view->render( 'sendmail', 'abandoned_basket.php' ); $view->finish(); + $body = $view->getContent(); + $body = 'test123'; - if( mail( $email, $data_base['subject'], $view->getContent(), $header, '-f '.$email_from ) ) { + if( mail( $email, $data_base['subject'], $body, $header, '-f '.$email_from ) ) { return true; } else { -- libgit2 0.21.4