Welcome Guest, Not a member yet? Register   Sign In
[Email Service] the sender's name doesn't appear in Gmail
#1

Strange sender of emali..
Quote:by @kenjis
If you do not see the same sender name, this may be due to your SMTPHost or your email client.

I'm experiencing the same issue where the sender's name doesn't appear in Gmail. Is it possible to override the setForm() method, or is there another solution we can try?
Reply
#2

Code:
class Email extends BaseConfig
{
    public string $fromEmail  = '';
    public string $fromName  = '';
    public string $recipients = '';

    /**
    * The "user agent"
    */
    public string $userAgent = 'CodeIgniter';

    /**
    * The mail sending protocol: mail, sendmail, smtp
    */

    // public string $protocol = 'mail';
    public string $protocol = 'smtp';

    /**
    * The server path to Sendmail.
    */
    public string $mailPath = '';
I have solved this problem. The problem is I forget to change protocol variabel to smtp[Image: smile.png]
Reply




Theme © iAndrew 2016 - Forum software by © MyBB