Symfony2 でアプリケーションを開発しています crontab で実行されるコマンドがあります
これはコマンドです:
<?php
namespace project\projBundle\Service;
use Doctrine\ORM\EntityManager;
use Symfony\Component\Templating\EngineInterface;
class Sender {
protected $em;
protected $templating;
protected $mailer;
public function __construct($em, $templating,\Swift_Mailer $mailer) {
$this->em = $em;
$this->templating = $templating;
$this->mailer = $mailer; }
public function runSender() {
$proj = $this->em->createQuery("query")->setMaxResults(20)->getResult();
$message = \Swift_Message::newInstance()
->setSubject('Contact enquiry from symblog')
->setFrom('...@gmail.com')
->setTo('...@gmail.com')
->setBody($this->templating->render('projectprojBundle:Others:emailNew.html.twig', array('proj' => $proj)));
$this->mailer->send($message); } }
parameters.yml:
parameters:
mailer_transport: gmail
mailer_host: ~
mailer_user: ...@gmail.com
mailer_password: ...
config_test:
swiftmailer:
disable_delivery: false
spool: { type: memory }
これは私に電子メールを送信していますが、2 つの電子メールを受信しています。
Delivery to the following recipient failed permanently:
...@gmail
Technical details of permanent failure:
DNS Error: Domain name not found
2番目の小枝コードはレンダリングされていません。
私が間違っていることは何ですか?