我正在使用Silex SwiftmailerServiceProvider。 现在我需要从我的网站发送电子邮件,但我一直收到此错误。 我搜遍了整个地方,但我发现只有#110错误等。
目前使用的代码:
$message = \Swift_Message::newInstance()
->setSubject('[OFFERTE]' . $data['name'])
->setFrom(array('fromemail'))
->setTo(array('myemail'))
->setBody($data['comment'],'text/html');
$app['mailer']->send($message);
上面的代码是我的page.php(登录页面)中的代码。
$app->register(new Silex\Provider\SwiftmailerServiceProvider(), array(
'swiftmailer.options' => array(
'host' => 'host',
'port' => 'port',
'username' => 'username',
'password' => 'password',
'encryption' => null,
'auth_mode' => null
)
));
上面的代码是我的bootstrap.php中的内容(如果您熟悉silex)。 任何人都知道这个错误可能是什么来源?
谢谢!
彼得-扬
编辑:我确实填写了boostrap.php中的主持人等答案 0 :(得分:0)
对于我遇到同样问题的所有其他人......
如果您收到此消息,则说您做错了。我遇到的问题是有些数据是错误的连接。因此,请检查所需的数据。