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 に接続しようとしていることです。誰が問題がどこにあるのか教えてもらえますか?