라라벨용 NCP SENS SMS 전송 채널.
- 설치
- 토큰 설정
- 사용
- 기여
- Credits
Laravel Sens는 Composer 저장소에서 다운로드 가능합니다.
라라벨 프로젝트 루트에서 다음 명령을 입력하여 설치할 수 있습니다.
composer require hyungju/laravel-sens
설치 후, 본 채널을 등록하여야 합니다.
config/app.php
에서 다음 코드를 입력하십시오.
'providers' => [
...
NotificationChannels\Sens\SensServiceProvider::class,
],
NCP에서는 토큰을 통해 사용자를 인증하여 SMS를 전송합니다.
Laravel Sens는 총 3개의 토큰을 필요로 합니다.
- x-ncp-auth-key
- x-ncp-service-secret
- serviceid
NCP에서 해당 토큰들을 발급한 후에,
config/services.php
에서
...
'sens' => [
'x-ncp-auth-key' => env('SENS_AUTH_KEY'),
'x-ncp-service-secret' => env('SENS_AUTH_SECRET'),
'serviceid' => env('SENS_SERVICE_ID'),
],
...
다음과 같은 코드를 추가한 후,
라라벨 프로젝트 루트의 .env
파일에
SENS_AUTH_KEY=key
SENS_AUTH_SECRET=key
SENS_SERVICE_ID=key
다음과같은 내용을 입력하면 됩니다.
Notification Class에서 이제, Laravel Sens를 이용할 수 있습니다.
use NotificationChannels\Sens\SensChannel;
use NotificationChannels\Sens\SensMessage;
use Illuminate\Notifications\Notification;
class InvoicePaid extends Notification
{
public function via($notifiable)
{
return [SensChannel::class];
}
public function toSens($notifiable)
{
return SensMessage::create()
->content("[라라벨 NCP Sens Notification Channel TEST]\n라라벨의 네이버 클라우드 플랫폼 SENS 채널 테스트입니다. 이 문자는 ".$notifiable->name." 유저에게 발송되었습니다.")
->countrycode("82")
->forcommon()
->tolms()
->subject("LMS로 전송")
->to($notifiable->phone)
->from("등록된 발신자번호");
}
}
Laravel SENS에서는 다음과같은 SMS 전송 메소드들을 제공합니다.
to
: 수신자 전화번호 설정content
: SMS 내용from
: 발신자 번호 설정 **사전에 NCP SENS에 등록한 번호만 전송이 가능합니다 **tosms
: SMS로 전송.tolms
: LMS로 전송.forad
: 광고용 메시지 전송forcommon
: 일반 메시지 전송countrycode
: 국가번호 입력subject
: LMS인경우, 제목
PR혹은 Issue를 남겨주시면 됩니다.
- HyungJu Sung (2018~2019)
- Syed Irfaq R. (~2018)
The MIT License (MIT). Please see License File for more information.