SMTP method not working

Trying to send form results to my email (instead of the server). I have definitely added all the correct details. The test send comes through from the SMTP page but not a test from the form page itself. Any ideas please?

Was your previous problem solved in this post!

Yes I have chosen the html input option. Maybe I need to alter the SMTP on the server itself?

It is probably sending from a different email address. Check the settings here:
/index.php/dashboard/system/mail/addresses

It would be nice if by default they all were set to the same. I expect that having different parts of the system send from different addresses is a pretty niche requirement.

1 Like

is this option within the form block itself?

You can set the “from” address that your forms use in \application\config\concrete.php

Like this:

<?php
return array(
   'email' => array(
        'form_block' => array(
              'address' => 'noreply@yoursite.com'
        ),
        'default' => array(
            'address' => 'noreply@shrccc.co.uk',
            'name'    => 'Your Site Name'
        )
    )
);