0
のメールアイコンを得ていません。私は私のデベロッパーボックスのチュートリアルに従っているので、実際の電子メールを送信するつもりはないので、私は封筒を取得する必要がありますか?Symfony2のSymblogチュートリアル迅速なメールが私はこのチュートリアルを、以下の午前開発バー
ここに私のアプリ/設定/ parameters.ini:
mailer_transport = "gmail"
mailer_encryption = "ssl"
mailer_auth_mode = "login"
mailer_host = "smtp.gmail.com"
mailer_user = "[email protected]"
mailer_password = "mypassword"
、私はSRC /ブロガー/ BlogBundle /コントローラ/ PageController.phpがあります。この後
public function contactAction()
{
#return $this->render('BloggerBlogBundle:Page:contact.html.twig');
$enquiry = new Enquiry();
$form = $this->createForm(new EnquiryType(), $enquiry);
$request = $this->getRequest();
if ($request->getMethod() == 'POST')
{
$form->bindRequest($request);
if ($form->isValid())
{
// Perform some action, such as sending an email
$message = \Swift_Message::newInstance()
->setSubject('Contact enquiry from symblog')
->setFrom('[email protected]')
->setTo($this->container->getParameter('blogger_blog.emails.contact_email'))
->setBody($this->renderView('BloggerBlogBundle:Page:contactEmail.txt.twig', array('enquiry' => $enquiry)));
$this->get('mailer')->send($message);
$this->get('session')->setFlash('blogger-notice', 'Your contact enquiry was successfully sent. Thank you!');
// Redirect - This is important to prevent users re-posting
// the form if they refresh the page
return $this->redirect($this->generateUrl('BloggerBlogBundle_contact'));
}
}
return $this->render('BloggerBlogBundle:Page:contact.html.twig', array(
'form' => $form->createView()
));
を私は彼らのようなすべてのものを持っていますそれを持って、私は何が欠けていますか? 助けてください? ありがとう
リクエストPOSTパラメータの下にあるものを表示していて、入力ボックスからコンテンツをリクエストしていますが、メールについては何も送信されませんでした。 –
ありがとう! :) –