为MailMessage创建附件

时间:2016-10-30 15:52:42

标签: typo3 extbase typo3-6.2.x

从我的extbase 6.2扩展程序中,我想发送不同的电子邮件 在控制器类中,我编写了一个如下所示的邮件功能:
@param注意没有$attachment - 最后见我的问题)

/**
 * 
 * @param string $to
 * @param string $subject
 * @param string $email_prefix
 * @param string $msg
 * @param string $email_suffix
 */
public function mailAction($to, $subject, $email_prefix, $msg, $email_suffix, $attachment = null) {
    try {
        $from = \TYPO3\CMS\Core\Utility\MailUtility::getSystemFrom();
        $body = $email_prefix
                . PHP_EOL . PHP_EOL
                . $msg
                . PHP_EOL . PHP_EOL
                . $email_suffix;
        $htmlBody = nl2br($body);
        $toEmail = $to;
        $mail = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\\CMS\\Core\\Mail\\MailMessage');
        $mail->setFrom($from)
                ->setTo(array($toEmail))
                ->setSubject($subject)
                ->setBody($htmlBody, 'text/html');
        $mail->addPart($body, 'text/plain');
        if ($attachment) {
            $mail->attach($attachment);
        }
        if (empty($toEmail) || strpos($toEmail, '@') === FALSE) {
            $this->addFlashMessage('Die Mail konnte nicht verschickt werden! Keine Email-Adresse des Empfängers', '', \TYPO3\CMS\Core\Messaging\FlashMessage::ERROR
            );
        } else {
            if ($mail->send()) {
                $this->addFlashMessage('Die Mail für wurde verschickt!', '');
            } else {
                $this->addFlashMessage('Die Mail konnte nicht verschickt werden!', '', \TYPO3\CMS\Core\Messaging\FlashMessage::ERROR
                );
            }
        }
        $this->redirect('list');
    } catch (Exception $e) {
        echo 'Caught exception: ', $e->getMessage(), "\n";
    }
}

在一个调用邮件功能的函数中,我尝试创建这样的附件,但它没有说:Fatal error: Class 'Swift_Attachment' not found in.../...Controller.php

$attachment = \Swift_Attachment::newInstance()
                ->setFilename('Termine.html')
                ->setContentType('text/html')
                ->setBody($emailView->render());

然后我调用这样的邮件功能:

$this->redirect('mail', null, null, array(
            $to,
            $subject,
            $email_prefix,
            $msg,
            $email_suffix,
            $attachment));

我的问题:

  1. 如何在我的extbase扩展控制器中成功创建Swift_Attachment类型的对象(不事先创建MailMessage对象并在其中创建附件)?
  2. 我应该在@param之后添加什么作为我的邮件功能中$attachment变量的类型?
  3. - 编辑 -

    好的,显然没有人这样做,因为它并不意味着 我现在使用Rene的方法将它与Dimitri的多个附件的可扩展答案相结合。我的@param现在是array因为我必须在实例化MailMessage后创建实际的附件 - 谢谢!

3 个答案:

答案 0 :(得分:1)

  1. \TYPO3\CMS\Core\Mail\MailMessage中,swiftmailer类有一个require_once;他们似乎没有自动加载。也许您可以将附件作为呈现的HTML传递并在实例化Swift_Attachment对象后创建MailMessage对象?
  2. 如果1中的解决方案有效,那将是一个简单的字符串。

答案 1 :(得分:1)

在我对6.2.25的扩展中,ist的作品没有任何包括:

$email->attach(\Swift_Attachment::newInstance(
  $emailView->render(), 
  'Termine.html', 
  'text/html'
));

因此,您应该检查为什么您的自动加载课程不起作用。您是否尝试清除缓存完成?

关于你的第二个问题:正确的参数声明应该是:

@param \Swift_Mime_Attachment $attachment

但我不会进行重定向,而是$ this->前进。为此,您不需要在客户端进行重定向。如果此操作仅由其他操作调用,我还建议将其设为受保护的函数,直接从您的操作中调用它:

$this->sendMail($to, $subject, $email_prefix, $msg, $email_suffix, $attachment)

- 编辑 -

我建议在SwitftMailer初始化后使用绕过附件信息来创建附件对象:

/**
 * 
 * @param string $to
 * @param string $subject
 * @param string $email_prefix
 * @param string $msg
 * @param string $email_suffix
 * @param array  $attachment
 */
public function mailAction($to, $subject, $email_prefix, $msg, $email_suffix, $attachment = null) {
  ...
  if (is_array($attachment) && array_key_exist('content', $attachment) && array_key_exist('filename', $attachment) && array_key_exist('mime', $attachment)) {
    $mail->attach(\Swift_Attachment::newInstance($attachment['content'], $attachment['filename'], $attachment['mime']));
  }
  ...
}

答案 2 :(得分:1)

正如Jigal van Hemert所说,您只能在创建MailMessage对象后创建附件对象,因为该类未自动加载。我只是将附件作为文件路径传递给您的邮件功能,它应该在那里而不是在外面处理。

if ($attachment) {
    $email->attach(\Swift_Attachment::fromPath($attachment));
}

在我看来,如果你可以传递多个文件而不是一个文件会更有意义,所以$attachment应该是$attachments数组

        if(count($attachments)) {
            foreach ($attachments as $name => $file) {
                if(file_exists($file)) { 
                    if(trim($name) && !is_numeric($name)) {
                        $email->attach(\Swift_Attachment::fromPath($file)->setFilename($name));
                    } else {
                        $email->attach(\Swift_Attachment::fromPath($file));
                    }
                }
            }
        }