hi,
I am trying to send an attachment using CakePHP 1.2 native Email
Component. I am correctly setting filePath and filename variable.
However, my emails are being sent without any attachment. The email
gets successfully sent but without any attachment.
is anyone facing similar problem? Please let me know is there a bug or
I am making some mistake. Below is my code that I am using to send
emails
$this->Email->replyTo = "{$replyTo}";
$this->Email->to = trim($this->data['Report']['to']);
$this->Email->from = "localhost";
$this->Email->sendAs = "html";
$this->Email->template = "report";
$this->Email->subject = $subject;
if($fileState){
$this->Email->filePaths = array(TMP.'emails');
$this->Email->attachments = array($filename);
$this->Email->send("{$username} would like to review a file");
}
else{
$this->Email->send($body);
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---