提问者:小点点

laravel通知在组频道中添加用户的提及


我正在尝试在普通频道中发送一个提及用户的通知。这就是我所拥有的:

<?php

namespace App\Notifications;

use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Messages\SlackMessage;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;

class WeeklyTasksResponsible extends Notification
{
    use Queueable;

    protected $employee;

    /**
     * Create a new notification instance.
     *
     * @return void
     */
    public function __construct(\App\Employee $employee)
    {
        $this->employee = $employee;
    }

    /**
     * Get the notification's delivery channels.
     *
     * @param  mixed  $notifiable
     * @return array
     */
    public function via($notifiable)
    {
        return ['slack'];
    }


    /**
     * Get the Slack representation of the notification.
     *
     * @param  mixed  $notifiable
     * @return SlackMessage
     */
    public function toSlack($notifiable)
    {
        return (new SlackMessage)
            ->content('Reponsible for this week is: ' . $this->employee->slack_name);
    }
}

这将在我们公司的一般slack频道中发送每周通知。消息是“本周负责:nameofuser”。问题是用户没有看到有关此的通知。

我也尝试过这样做:

public function toSlack($notifiable)
{
    return (new SlackMessage)
        ->content('Reponsible for this week is: @' . $this->employee->slack_name);
}

但这与在频道中提到某人本人是不同的。

我该怎么做?


共3个答案

匿名用户

如@HCK通过将可选参数link_names设置为 true,您可以在 chat.post 消息中为@username提及启用用户名匹配。

但是,不建议使用用户名创建提及,不应再使用。

推荐的方法是使用用户ID创建提及,默认情况下可以使用。

例:

<@U12345678>

请参阅帖子Slack中对用户名的挥之不去的告别,了解有关用户名弃用的详细信息。

匿名用户

我刚刚在Laravel 6.18.0源代码中发现了以下内容:

    /**
     * Find and link channel names and usernames.
     *
     * @return $this
     */
    public function linkNames()
    {
        $this->linkNames = 1;

        return $this;
    }

< code > vendor/laravel/slack-notification-channel/src/Messages/slack message . PHP

所以你可以这样使用它:

public function toSlack($notifiable)
    {
        return (new SlackMessage)
        ->linkNames()
        ...
    }

正如@erik-卡尔科肯所指出的,使用 Slack 用户 ID,由

匿名用户

事实上,我试过那种方法,效果很好。

$content .= "New order!\r\n @person";

return (new SlackMessage)
            ->content($content)->linkNames();

你需要在人名或团队名之前加上@,为了让slack能够识别出这些名字,而不仅仅是文字,你需要用linkNames链接内容