문제

How do I go about setting custom email headers within cakephp 1.3?

I am trying the following:

$this->Email->headers = array('X-statusID' => $status_id);

But the header does not exist in the email when I read it using PHP IMAP.

Thanks

도움이 되었습니까?

해결책

Based on what I read in the API documentation, it should just be:

$this->Email->header(array('X-statusID' => $status_id));
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top