IMPORTANT: ini_set
does only work if that code is executed. Not useful for code that
has parse errors because the error will be before the code is executed.
Instead write those changes into the php.ini.
error_reporting(E_ALL);
ini_set('ignore_repeated_errors', TRUE);
ini_set('display_errors', FALSE);
ini_set("log_errors", TRUE);
ini_set('error_log', config('error_file'));
public function __set($name, $value) {
throw new Exception("Cannot add new property \$$name to instance of " . __CLASS__);
}
When you set a value to an instance variable in PHP, it will first look for that variable.
If it exists then the value is set directly and __set()
is never called. If the instance variable
does not exist (or if it cannot be accessed due to a private declaration) then it will call __set()
.
If __set()
doesn’t exist, then it either creates the variable or throws an exception (in the case of a private variable).
You can see the names of various extensions by using phpinfo() or if you’re using the CGI or CLI version of PHP you can use the -m switch to list all available extensions:
$ php -m
$ php -d memory_limit=-1 /usr/local/bin/composer update
So now that you have all your email accounts forwarding mail to your personal Gmail account you need a way to send from those accounts.
The very first thing you will need to do is ensure that you have 2-step verification enabled on your primary Gmail account. Important: If you don’t do this you will get an invalid password error further below when trying to authenticate your email address. So first go and enable 2-step verification.
Next, you will need to generate an App password. You then use the app password in place of your personal Gmail password further below. This is the only way this process will work. If you haven’t enabled 2-step verification you will get an error (see below) saying “The setting you are looking for is not available for your account.”
When creating the app password simply choose “Other” and give it a name (example: my 2nd business email). This will generate a password you will need to save for later.
Now back in Gmail, go to settings, and can click on “Accounts and Import.” Then click on “Add another email address you own.”
Enter your additional business name and business email that is on the custom domain.
Then for the SMTP server, it will by default show your custom domain. However, you will want to change this to use Google’s free SMTP server. So change it to smtp.gmail.com. Then enter in your personal Gmail address for the username (yourname@gmail.com) and your password. This is the app password you generated earlier, not your Gmail password.
You then can repeat the above steps for your other additional email accounts. Create separate app passwords for each additional email you add. And now all your email will come to one place and when you go to send mail you can choose from the drop down which one to send from. In the Gmail settings, you can also set the “Reply from the same address the message was sent to” to make it easier when replying to emails.