*/ public function via(object $notifiable): array { return ['mail']; } public function toMail(object $notifiable): MailMessage { return (new MailMessage) ->subject("Nuevo {$this->recordLabel} desde la web: {$this->recordName}") ->line("Se ha recibido un nuevo {$this->recordLabel} a través del formulario web: **{$this->recordName}**.") ->action('Ver en el CRM', $this->recordUrl) ->salutation('Relaticle'); } }