We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi I set $fromEmail in App\Config\Email.php but not working when send email. I set $email->setFrom('email@email.com', 'Email name');
$email->setFrom('email@email.com', 'Email name');
Expected result:
$email = \Config\Services::email(); $email->setTo($member->user_email); $email->setSubject('Email title'); $email->setMessage($body); $email->send();
Actual result:
$email = \Config\Services::email(); I set $email->setFrom('email@email.com', 'Email name'); $email->setTo($member->user_email); $email->setSubject('Email title'); $email->setMessage($body); $email->send();
The text was updated successfully, but these errors were encountered:
Hi there. Thanks for sharing this. When you set the actual $email-setFrom(); to an email address. Does it send the mail then?
Sorry, something went wrong.
8e72766
No branches or pull requests
Hi
I set $fromEmail in App\Config\Email.php but not working when send email.
I set
$email->setFrom('email@email.com', 'Email name');
Expected result:
Actual result:
The text was updated successfully, but these errors were encountered: