sendmail_path = "/usr/sbin/sendmail -t -i -f fromMe@blah.com
Но так лучше не делать.-f myemail@example.com
mail('test@example.org', 'Subject', 'Body', 'From: user@example.org', '-f user@example.org');
<?php
class Page_Portfolio extends Page_Basic{
private $menu;
public function actionIndex() {
$this->menu;
}
public function actionHtml(){
$this->menu;
}
}
<?php
class Page_Portfolio extends Page_Basic{
public function actionIndex() {
}
public function actionHtml(){
$this->actionIndex();
}
}