The getFrom errors as the from is not set within the config object. Instead, the function call should be
/**
* Get the default from address.
*
* @return string
*/
public function getFrom()
{
if (isset($this->config['from'])) {
return $this->config['from'];
}
}
A message fails to send when using a
messagingServiceSid
in a notification instead offrom
This occurs because of this line: https://github.com/laravel-notification-channels/twilio/blob/master/src/TwilioConfig.php#L69
The getFrom errors as the from is not set within the config object. Instead, the function call should be