반응형
Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | ||||
| 4 | 5 | 6 | 7 | 8 | 9 | 10 |
| 11 | 12 | 13 | 14 | 15 | 16 | 17 |
| 18 | 19 | 20 | 21 | 22 | 23 | 24 |
| 25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- webrtc
- http live streaming
- how to install cursor on ubuntu
- typescript
- M3U8
- hls.js
- node
- append row
- cursor-ubuntu-installer
- html2canvas
- Babel standalone
- three.js
- babel
- REST API
- code editor
- react
- swagger-typescript-api
- Prism.js
- segment
- KakaoMap
- localization
- Game js
- HLS
- multiple camera
- Excel
- Flutter
- jszip
- Redux
- uint8array
- uint16array
Archives
- Today
- Total
목록SMTP (1)
Never give up
오늘은 테스트용으로 SMTP를 이용해서 메일 보내기를 한번 해봤습니다 먼저 소스코드를 보면 server.js require('dotenv').config() const express = require('express') const app = express() app.use(express.urlencoded({ extended: true })) app.use(express.json()) const port = process.env.PORT || 8080 const emailHandler = require('./email') app.post('/send-mail', async (req, res) => { const data = req.body if (emailHandler.validation(data)) {..
WEB
2022. 4. 26. 13:32