0

我在使用 Propel 1.6 (sfPropelORMPlugin) 的 Symfony 1.4.14 项目中发送邮件时遇到问题。当我尝试运行时: ./symfony project:send-emails --message-limit=2 --time-limit=20我收到错误:

PHP Warning:  call_user_func() expects parameter 1 to be a valid callback, class 'MailMessagePeer' does not have a method 'getSpooledMessages' in /srv/www/mailing/trunk/plugins/sfPropelORMPlugin/lib/mailer/Swift_PropelSpool.class.php on line 105

Warning: call_user_func() expects parameter 1 to be a valid callback, class 'MailMessagePeer' does not have a method 'getSpooledMessages' in /srv/www/mailing/trunk/plugins/sfPropelORMPlugin/lib/mailer/Swift_PropelSpool.class.php on line 105
PHP Warning:  Invalid argument supplied for foreach() in /srv/www/mailing/trunk/plugins/sfPropelORMPlugin/lib/mailer/Swift_PropelSpool.class.php on line 115

Warning: Invalid argument supplied for foreach() in /srv/www/mailing/trunk/plugins/sfPropelORMPlugin/lib/mailer/Swift_PropelSpool.class.php on line 115

这是我的 schema.yml:

  mail_message:
    message:    { type: blob, required: true }
    created_at: ~

factory.yml 的一部分:

all:
  routing:
    class: sfPatternRouting
    param:
      generate_shortest_url:            true
      extra_parameters_as_query_string: true

  mailer:
    class: sfMailer
    param:
      logging:           %SF_LOGGING_ENABLED%
      charset:           %SF_CHARSET%
      delivery_strategy: spool
      spool_class:       Swift_PropelSpool
      spool_arguments:   [ MailMessage, message, getSpooledMessages ]
      transport:
        class: Swift_SmtpTransport
        param:
          host:       smtp.mail.com
          port:       465
          encryption: ssl
          username:   myusername
          password:   mypass
4

2 回答 2

1

您的 MailMessagePeer 类中有“getSpooledMessages”方法吗?

在这里查看更多信息:

http://www.symfony-project.org/gentle-introduction/1_4/en/11-Emails

于 2011-12-19T07:15:32.837 回答
-1

删除 ssl 加密并使用端口 25

于 2013-04-26T12:37:07.347 回答