2012-09-14 46 views
1

我使用的是蛋糕php 2.0版本,我需要在我的应用程序中点击调查按钮时发送附带PDF的电子邮件?如何发送PDF文件作为cakephp中的附件?

任何帮助极大的赞赏。

+1

什么你到目前为止尝试过吗?你是否至少试图找到自己的解决方案? –

+0

请不要大喊。 –

回答

2

试试这个:

首先,你应该确保使用App ::使用()的类加载:

<?php 
App::uses('CakeEmail', 'Network/Email'); 

在你的函数/动作:

$email = new CakeEmail(); 

$email->attachments('/full/file/path/file.pdf') 
$email->to  = '[email protected]'; 
$email->subject = 'Something'; 
$email->replyTo = $client['Client']['email']; 
$email->from = $client['Client']['email']; 
$email->emailFormat = 'html'; 

if($email->send()){ 
    die('Email Sent!'); 
}else{ 
    die('Failed to send email'); 
} 
+0

谢谢,但同时我需要生成新的PDF,然后发送一个mail.can它是可能的? –

+1

是的,但为此你必须使用任何pdf文件的创建者库 – Krishna

+0

检查此链接更多详细信息http://stackoverflow.com/questions/9377226/how-to-create-pdf-file-in-loop-in-cakephp – Krishna

相关问题