개발PC에서 이메일 인증을 통한 회원가입시 메일 발송과 회원가입 링크를 확인해 보기 위해서 간단한 smpt 서비스 제공
Mailpit - email & SMTP testing tool
Mailpit - email & SMTP testing tool with API for developers Mailpit is a small, fast, low memory, zero-dependency, multi-platform email testing tool & API for developers. It acts as an SMTP server, provides a modern web interface to view & test captured em
mailpit.axllent.org
macOS 설치
brew install mailpit
서비스 구동
brew services start mailpit
접속링크
http://localhost:8025/
라라벨에서 테스트시 .env 파일에 추가함.
MAIL_MAILER=smtp
MAIL_SCHEME=null
MAIL_HOST=localhost
MAIL_PORT=1025
MAIL_USERNAME=
MAIL_PASSWORD=
MAIL_FROM_ADDRESS="hello@example.com"
MAIL_FROM_NAME="${APP_NAME}"


메일 확인 후 회원 가입 진행여부를 판단할 수 있다.
'Laravel' 카테고리의 다른 글
Laravel Pint란? (0) | 2025.03.28 |
---|---|
Docker 에서 Laravel 개발하기 (0) | 2025.01.28 |
Laravel > favicon.ico 자동만들기 (0) | 2024.12.22 |
Laravel > 폴더 구조를 라우터로 연결하기 (0) | 2024.12.15 |
Laravel 에서 sqlite 추가 및 사용 방법 (0) | 2024.11.14 |
개발PC에서 이메일 인증을 통한 회원가입시 메일 발송과 회원가입 링크를 확인해 보기 위해서 간단한 smpt 서비스 제공
Mailpit - email & SMTP testing tool
Mailpit - email & SMTP testing tool with API for developers Mailpit is a small, fast, low memory, zero-dependency, multi-platform email testing tool & API for developers. It acts as an SMTP server, provides a modern web interface to view & test captured em
mailpit.axllent.org
macOS 설치
brew install mailpit
서비스 구동
brew services start mailpit
접속링크
http://localhost:8025/
라라벨에서 테스트시 .env 파일에 추가함.
MAIL_MAILER=smtp
MAIL_SCHEME=null
MAIL_HOST=localhost
MAIL_PORT=1025
MAIL_USERNAME=
MAIL_PASSWORD=
MAIL_FROM_ADDRESS="hello@example.com"
MAIL_FROM_NAME="${APP_NAME}"


메일 확인 후 회원 가입 진행여부를 판단할 수 있다.
'Laravel' 카테고리의 다른 글
Laravel Pint란? (0) | 2025.03.28 |
---|---|
Docker 에서 Laravel 개발하기 (0) | 2025.01.28 |
Laravel > favicon.ico 자동만들기 (0) | 2024.12.22 |
Laravel > 폴더 구조를 라우터로 연결하기 (0) | 2024.12.15 |
Laravel 에서 sqlite 추가 및 사용 방법 (0) | 2024.11.14 |