use Datomatic\LaravelHubspotEmailNotificationChannel\HubspotEmailChannel;
use Illuminate\Notifications\Notification;
class OrderConfirmation extends Notification
{
...
public function via($notifiable)
{
return ['mail', HubspotEmailChannel::class]];
}
public function toMail($notifiable)
{
$message = (new MailMessage)
->subject(__('order.order_confirm', ['code' => $this->order->code]));
return $message->view(
'emails.order', [
'title' => __('order.order_confirm', ['code' => $this->order->code]),
'order' => $this->order
]
);
}
//Optional text method
public function toHubspotTextMail($notifiable):string
{
return 'text of message to put on hubspot';
}
...
}
use Soundasleep\Html2Text;
class OrderConfirmation extends Notification
{
...
public function toHubspotTextMail(mixed $notifiable): string
{
return Html2Text::convert($this->toMail($notifiable)->render());
}
}
namespace App\Models;
class User extends Authenticatable{
...
public function getHubspotContactId(\Illuminate\Notifications\Notification $notification){
return $this->hubspot_contact_id;
}
...
}
use Datomatic\LaravelHubspotEmailNotificationChannel\HubspotEmailChannel;
use Illuminate\Notifications\Notification;
class PersonalMessage extends Notification
{
...
public function via($notifiable)
{
return ['mail', HubspotEmailChannel::class]];
}
public function toMail($notifiable)
{
$message = (new MailMessage)
->subject(__('messages.personal_subject'))
->from($this->employee->email, $this->employee->name)
->metadata('hubspot_owner_id', $this->employee->hubspot_owner_id);
return $message->view(
'messages.personal', [
'title' => __('messages.personal_welcome', ['recipient' => $notifiable->name]),
'employee' => $this->employee
]
);
}
...
}