Hi,
i am using vokuro for my project and i have created a custom contact form, so far so good.
Now i want to send the contact informations to my mailserver and i have no idea how to do that.
Is it mandatory to have the amazon key pair? Or do i have to insert only the smtp, port, user and password for mail? Do i have to insert any data somewhere else?
In Firebug network i get no errors after sending.
This is the config.php:
<?php
return new \Phalcon\Config(array(
'database' => array(
'adapter' => 'Mysql',
'host' => '127.0.0.1',
'username' => 'root',
'password' => '',
'dbname' => 'vokuro'
),
'application' => array(
'controllersDir' => APP_DIR . '/controllers/',
'modelsDir' => APP_DIR . '/models/',
'formsDir' => APP_DIR . '/forms/',
'viewsDir' => APP_DIR . '/views/',
'libraryDir' => APP_DIR . '/library/',
'pluginsDir' => APP_DIR . '/plugins/',
'cacheDir' => APP_DIR . '/cache/',
'baseUri' => '/vokuro/',
'publicUrl' => 'vokuro.phalcon.io',
'cryptSalt' => 'eEAfR|_&G&f,+vU]:jFr!!A&+71w1Ms9~8_4L!<@[[email protected]_2My|:+.u>/6m,$D'
),
'mail' => array(
'fromName' => 'Vokuro',
'fromEmail' => '[email protected]',
'smtp' => array(
'server' => 'smtp.gmail.com',
'port' => 587,
'security' => 'tls',
'username' => '',
'password' => ''
)
),
'amazon' => array(
'AWSAccessKeyId' => '',
'AWSSecretKey' => ''
)
));
Thank you for help
Stefan