6

我正在使用 Swift Mailer 406 发送电子邮件。我连接到我的 smtp.gmail.com 帐户,然后执行以下操作:

->setFrom(array($from => $fromname))

但是发送的电子邮件得到了原始的 gmail 帐户电子邮件。

我可以改变它吗?

4

3 回答 3

21

gmail 不允许您使用随机发件人地址。您必须在 gmail 设置中添加并验证您要使用的地址:

Settings -> Accounts -> Send mail as -> Add another email address you own
于 2011-03-25T11:13:18.967 回答
0
$email=$entity->getEmail();
->setFrom(array('your fix adress@gmail.com' => $email))
于 2016-04-15T22:52:20.853 回答
-1

在您的 Parameters.yml 中,您应该进行以下配置:

parameters:
database_host: 127.0.0.1
database_port: null
database_name: your db name
database_user: root
database_password: null
mailer_transport: smtp
mailer_host: smtp.gmail.com
mailer_user: your fix adress@gmail.com
mailer_password: your password of your fix adress
mailer_port: 465
mailer_encryption: ssl
auth_mode:         login
secret: 3556f3fb752a82ce0ee9c419ef793b7a707f324a

在您的联系人控制器中,您应该添加它来修复setfrom()swiftmailer 的功能:

if ($form->isValid()) {
    $em = $this->getDoctrine()->getManager();
    $subject = $entity->getSubject();
    $name=$entity->getName();
    $email=$entity->getEmail();
    $body=$entity->getBody();
    $message = \Swift_Message::newInstance('here')
        ->setSubject("Shoppify email from ".$name." Subject ".$subject)
        ->setFrom(array('your fix adress@gmail.com' => $email))
        ->setTo('your adress destionation@example.com')
        ->setBody($body);
    $this->get('mailer')->send($message);
    $em->persist($entity);
    $em->flush();
    return $this->redirect($this->generateUrl('email_sended'));
}
于 2016-04-15T23:10:01.500 回答