0

propel 1.4でsymfony 1.4を使用しています

factory.yml の設定に従っています

dev:
  mailer:
    class: sfMailer
    param:
      logging:           %SF_LOGGING_ENABLED%
      charset:           %SF_CHARSET%
      delivery_strategy: realtime
      transport:
        class: Swift_SmtpTransport
        params:
          host:     mail.myserver.com
          port:     26
          username: webmaster@myserver.com
          password: mypass

次のコードを実行します。

$mailer=$this->getMailer()->composeAndSend($from, $to, $subject, $message);

次のエラーの問題

Connection could not be established with host localhost [A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. #10060]

私の問題は、factory.yml で別のホストを指定した場合でも、localhost に接続しようとしていることです。誰が問題がどこにあるのか教えてもらえますか?

4

1 に答える 1

1

工場でタイプミスがあります。

実際の factory.yml に存在する場合は、underに変更paramsしてみてください。paramtransport

于 2012-10-09T06:06:21.500 に答える