'user-openid', // 'template_id' => 'template-id', // 'url' => 'https://easywechat.com', // 'miniprogram' => [ // 'appid' => 'xxxxxxx', // 'pagepath' => 'pages/xxx', // ], // 'data' => [ // 'key1' => 'VALUE', // 'key2' => 'VALUE2', // ... // ], // ] $config = [ 'app_id' => config('app.wechat_appid'), 'secret' => config('app.wechat_secret'), ]; $app = Factory::officialAccount($config); return $app->template_message->send($notifiable->template_message); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return $notifiable->template_message; } }