본문 바로가기

Knowledge10

mailgun과 sendgrid를 알아보고 이메일 전송하기 https://darrengwon.tistory.com/302?category=858366 Nodemailer + mailgun 최근 들어서는 Nodemailer 보다는 그냥 mailgun-js를 사용하고 있습니다. Nodemailer :: Nodemailer Nodemailer Nodemailer is a module for Node.js applications to allow easy as cake email sending. The proj.. darrengwon.tistory.com https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=dilrong&logNo=221418667056 메일건(mailgun)을 이용한 도메인 이메일 사.. 2022. 9. 7.
CORS의 필요성을 느꼈다. CORS 정리하기! https://developer.mozilla.org/en-US/docs/Glossary/Preflight_request Preflight request - MDN Web Docs Glossary: Definitions of Web-related terms | MDN A CORS preflight request is a CORS request that checks to see if the CORS protocol is understood and a server is aware using specific methods and headers. developer.mozilla.org 처음에 봤을 때는 무슨 소리인지 몰랐다... 서버에서 이미지의 url을 fetcg를 통해 받았는데.. 문제는 요청이 두번이 들어.. 2022. 9. 7.
nodejs를 활용한 이메일 보내기 (Nodemailer) npm install nodemailer let transporter = nodemailer.createTransport(transport[, defaults]) transporter 는 이메일을 보낼 수 있는 객체로 만들어진다. transport 는 transport 설정 객체, connection url 혹은 transport plugin 인스턴스이다. defaults 는 메일 옵션을 위한 기본 값들이 있는 객체이다. port 는 연결을 위한 것이다. (defaults to 587 if is secure is false or 465 if true) host 는 연결을 위한 호스트이름 혹은 아이피 주소이다. (defaults to ‘localhost’) auth – 인증 데이터를 정의하는 곳이다. ty.. 2022. 8. 31.
나에게 보내는 연락 이메일 페이지 생성 google mail api를 사용함! install 방법 https://github.com/dwyl/learn-to-send-email-via-google-script-html-no-server#how GitHub - dwyl/learn-to-send-email-via-google-script-html-no-server: An Example of using an HTML form (e.g: "Contact Us" on a web :email: An Example of using an HTML form (e.g: "Contact Us" on a website) to send Email without a Backend Server (using a Google Script) perfect for static.. 2022. 8. 31.