SMTP 통합 예제

이 가이드는 다양한 프로그래밍 언어, 프레임워크, 이메일 클라이언트를 사용하여 Forward Email의 SMTP 서비스와 통합하는 방법에 대한 자세한 예를 제공합니다. 당사의 SMTP 서비스는 안정적이고 안전하며 기존 애플리케이션과 쉽게 통합되도록 설계되었습니다.

통합 예제를 살펴보기 전에 SMTP 서비스가 이메일을 처리하는 방식을 이해하는 것이 중요합니다.

이메일 대기열 및 재시도 시스템

SMTP를 통해 당사 서버로 이메일을 제출하는 경우:

  1. 초기 처리: 이메일은 검증되고, 맬웨어가 있는지 검사되고, 스팸 필터에 의해 검사됩니다.
  2. 스마트 대기열: 이메일은 배달을 위해 정교한 대기열 시스템에 배치됩니다.
  3. 지능형 재시도 메커니즘: 일시적으로 배송이 실패하는 경우, 당사 시스템은:
    • 우리의 오류 응답을 분석해보세요 getBounceInfo 기능
    • 문제가 일시적인지(예: "나중에 다시 시도하세요", "일시적으로 연기됨") 또는 영구적인지(예: "사용자를 알 수 없음") 확인합니다.
    • 일시적인 문제의 경우 이메일을 다시 시도하도록 표시하세요.
    • 영구적인 문제의 경우 반송 알림을 생성하세요.
  4. 5일 재시도 기간: 업계 표준인 Postfix와 유사하게 최대 5일 동안 배송을 재시도하여 일시적인 문제가 해결될 수 있는 시간을 제공합니다.
  5. 배송 상태 알림: 발신자는 이메일 상태(배달됨, 지연됨, 반송됨)에 대한 알림을 받습니다.

[!NOTE] 성공적인 배달 후, 아웃바운드 SMTP 이메일 콘텐츠는 보안 및 개인 정보 보호를 위해 구성 가능한 보관 기간(기본 30일) 후에 삭제됩니다. 배달이 성공했음을 나타내는 플레이스홀더 메시지만 남습니다.

신뢰성을 위한 더미 방지

우리 시스템은 다양한 예외 상황을 처리하도록 설계되었습니다.

  • 차단목록이 감지되면 이메일이 자동으로 재시도됩니다.
  • 네트워크 문제가 발생할 경우 배달을 재시도합니다.
  • 수신자의 사서함이 가득 찬 경우 시스템은 나중에 다시 시도합니다.
  • 수신 서버를 일시적으로 사용할 수 없는 경우 계속 시도합니다.

이러한 접근 방식은 개인정보 보호와 보안을 유지하는 동시에 배달율을 크게 개선합니다.

Nodemailer 사용하기

메모 메일러 Node.js 애플리케이션에서 이메일을 보내는 데 널리 사용되는 모듈입니다.

const nodemailer = require('nodemailer');

// Create a transporter object const transporter = nodemailer.createTransport({ host: 'smtp.forwardemail.net', port: 465, secure: true, // Use TLS auth: { user: 'your-username@your-domain.com', pass: 'your-password' } });

// Send mail with defined transport object async function sendEmail() { try { const info = await transporter.sendMail({ from: '"Your Name" <your-username@your-domain.com>', to: 'recipient@example.com', subject: 'Hello from Forward Email', text: 'Hello world! This is a test email sent using Nodemailer and Forward Email SMTP.', html: '<b>Hello world!</b> This is a test email sent using Nodemailer and Forward Email SMTP.' });

console.log('Message sent: %s', info.messageId);

} catch (error) { console.error('Error sending email:', error); } }

sendEmail();

Express.js 사용하기

Express.js 애플리케이션과 Forward Email SMTP를 통합하는 방법은 다음과 같습니다.

const express = require('express');
const nodemailer = require('nodemailer');
const app = express();
const port = 3000;

app.use(express.json());

// Configure email transporter const transporter = nodemailer.createTransport({ host: 'smtp.forwardemail.net', port: 465, secure: true, auth: { user: 'your-username@your-domain.com', pass: 'your-password' } });

// API endpoint for sending emails app.post('/send-email', async (req, res) => { const { to, subject, text, html } = req.body;

try { const info = await transporter.sendMail({ from: '"Your App" <your-username@your-domain.com>', to, subject, text, html });

res.status(200).json({
  success: true,
  messageId: info.messageId
});

} catch (error) { console.error('Error sending email:', error); res.status(500).json({ success: false, error: error.message }); } });

app.listen(port, () => { console.log(Server running at http://localhost:${port}); });

smtplib 사용

import smtplib
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart

Email configuration

sender_email = "your-username@your-domain.com" receiver_email = "recipient@example.com" password = "your-password"

Create message

message = MIMEMultipart("alternative") message["Subject"] = "Hello from Forward Email" message["From"] = sender_email message["To"] = receiver_email

Create the plain-text and HTML version of your message

text = "Hello world! This is a test email sent using Python and Forward Email SMTP." html = "<html><body><b>Hello world!</b> This is a test email sent using Python and Forward Email SMTP.</body></html>"

Turn these into plain/html MIMEText objects

part1 = MIMEText(text, "plain") part2 = MIMEText(html, "html")

Add HTML/plain-text parts to MIMEMultipart message

message.attach(part1) message.attach(part2)

Send email

try: server = smtplib.SMTP_SSL("smtp.forwardemail.net", 465) server.login(sender_email, password) server.sendmail(sender_email, receiver_email, message.as_string()) server.quit() print("Email sent successfully!") except Exception as e: print(f"Error sending email: {e}")

Django 사용하기

Django 애플리케이션의 경우 다음을 추가하세요. settings.py:

# Email settings
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST = 'smtp.forwardemail.net'
EMAIL_PORT = 465
EMAIL_USE_SSL = True
EMAIL_HOST_USER = 'your-username@your-domain.com'
EMAIL_HOST_PASSWORD = 'your-password'
DEFAULT_FROM_EMAIL = 'your-username@your-domain.com'

그런 다음 귀하의 의견에 따라 이메일을 보내세요.

from django.core.mail import send_mail

def send_email_view(request): send_mail( 'Subject here', 'Here is the message.', 'from@your-domain.com', ['to@example.com'], fail_silently=False, html_message='<b>Here is the HTML message.</b>' ) return HttpResponse('Email sent!')

PHPMailer 사용하기

<?php
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;

require 'vendor/autoload.php';

$mail = new PHPMailer(true);

try { // Server settings $mail->isSMTP(); $mail->Host = 'smtp.forwardemail.net'; $mail->SMTPAuth = true; $mail->Username = 'your-username@your-domain.com'; $mail->Password = 'your-password'; $mail->SMTPSecure = PHPMailer::ENCRYPTION_SMTPS; $mail->Port = 465;

// Recipients
$mail->setFrom('your-username@your-domain.com', 'Your Name');
$mail->addAddress('recipient@example.com', 'Recipient Name');
$mail->addReplyTo('your-username@your-domain.com', 'Your Name');

// Content
$mail->isHTML(true);
$mail->Subject = 'Hello from Forward Email';
$mail->Body    = '&#x3C;b>Hello world!&#x3C;/b> This is a test email sent using PHPMailer and Forward Email SMTP.';
$mail->AltBody = 'Hello world! This is a test email sent using PHPMailer and Forward Email SMTP.';

$mail->send();
echo 'Message has been sent';

} catch (Exception $e) { echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}"; }

Laravel 사용하기

Laravel 애플리케이션의 경우 업데이트하세요. .env 파일:

MAIL_MAILER=smtp
MAIL_HOST=smtp.forwardemail.net
MAIL_PORT=465
MAIL_USERNAME=your-username@your-domain.com
MAIL_PASSWORD=your-password
MAIL_ENCRYPTION=ssl
MAIL_FROM_ADDRESS=your-username@your-domain.com
MAIL_FROM_NAME="${APP_NAME}"

그런 다음 Laravel의 Mail façade를 사용하여 이메일을 보내세요.

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request; use Illuminate\Support\Facades\Mail; use App\Mail\WelcomeEmail;

class EmailController extends Controller { public function sendEmail() { Mail::to('recipient@example.com')->send(new WelcomeEmail());

    return 'Email sent successfully!';
}

}

Ruby Mail Gem 사용

require 'mail'

Mail.defaults do delivery_method :smtp, { address: 'smtp.forwardemail.net', port: 465, domain: 'your-domain.com', user_name: 'your-username@your-domain.com', password: 'your-password', authentication: 'plain', enable_starttls_auto: true, ssl: true } end

mail = Mail.new do from 'your-username@your-domain.com' to 'recipient@example.com' subject 'Hello from Forward Email'

text_part do body 'Hello world! This is a test email sent using Ruby Mail and Forward Email SMTP.' end

html_part do content_type 'text/html; charset=UTF-8' body '<b>Hello world!</b> This is a test email sent using Ruby Mail and Forward Email SMTP.' end end

mail.deliver! puts "Email sent successfully!"

JavaMail API 사용하기

import java.util.Properties;
import javax.mail.*;
import javax.mail.internet.*;

public class SendEmail { public static void main(String[] args) { // Sender's email and password final String username = "your-username@your-domain.com"; final String password = "your-password";

    // SMTP server properties
    Properties props = new Properties();
    props.put("mail.smtp.auth", "true");
    props.put("mail.smtp.starttls.enable", "true");
    props.put("mail.smtp.host", "smtp.forwardemail.net");
    props.put("mail.smtp.port", "465");
    props.put("mail.smtp.socketFactory.port", "465");
    props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");

    // Create session with authenticator
    Session session = Session.getInstance(props,
        new javax.mail.Authenticator() {
            protected PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication(username, password);
            }
        });

    try {
        // Create message
        Message message = new MimeMessage(session);
        message.setFrom(new InternetAddress(username));
        message.setRecipients(Message.RecipientType.TO, InternetAddress.parse("recipient@example.com"));
        message.setSubject("Hello from Forward Email");

        // Create multipart message
        Multipart multipart = new MimeMultipart("alternative");

        // Text part
        BodyPart textPart = new MimeBodyPart();
        textPart.setText("Hello world! This is a test email sent using JavaMail and Forward Email SMTP.");

        // HTML part
        BodyPart htmlPart = new MimeBodyPart();
        htmlPart.setContent("&#x3C;b>Hello world!&#x3C;/b> This is a test email sent using JavaMail and Forward Email SMTP.", "text/html");

        // Add parts to multipart
        multipart.addBodyPart(textPart);
        multipart.addBodyPart(htmlPart);

        // Set content
        message.setContent(multipart);

        // Send message
        Transport.send(message);

        System.out.println("Email sent successfully!");

    } catch (MessagingException e) {
        throw new RuntimeException(e);
    }
}

}

천둥새

flowchart TD
    A[Open Thunderbird] --> B[Account Settings]
    B --> C[Account Actions]
    C --> D[Add Mail Account]
    D --> E[Enter Name, Email, Password]
    E --> F[Manual Config]
    F --> G[Enter Server Details]
    G --> H[SMTP: smtp.forwardemail.net]
    H --> I[Port: 465]
    I --> J[Connection: SSL/TLS]
    J --> K[Authentication: Normal Password]
    K --> L[Username: full email address]
    L --> M[Test and Create Account]
  1. Thunderbird를 열고 계정 설정으로 이동하세요.
  2. "계정 작업"을 클릭하고 "메일 계정 추가"를 선택하세요
  3. 이름, 이메일 주소, 비밀번호를 입력하세요
  4. "수동 구성"을 클릭하고 다음 세부 정보를 입력하세요.
    • 수신 서버:
      • IMAP: imap.forwardemail.net, 포트: 993, SSL/TLS
      • POP3: pop3.forwardemail.net, 포트: 995, SSL/TLS
    • 발신 서버(SMTP): smtp.forwardemail.net, 포트: 465, SSL/TLS
    • 인증 : 일반 비밀번호
    • 사용자 이름: 전체 이메일 주소
  5. "테스트"를 클릭한 다음 "완료"를 클릭합니다.

애플 메일

  1. 메일을 열고 메일 > 환경 설정 > 계정으로 이동하세요.
  2. 새로운 계정을 추가하려면 "+" 버튼을 클릭하세요.
  3. "다른 메일 계정"을 선택하고 "계속"을 클릭하세요.
  4. 이름, 이메일 주소, 비밀번호를 입력하신 후 "로그인"을 클릭하세요.
  5. 자동 설정이 실패하면 다음 세부 정보를 입력하세요.
    • 수신 메일 서버: imap.forwardemail.net (또는 POP3의 경우 pop3.forwardemail.net)
    • 발신 메일 서버: smtp.forwardemail.net
    • 사용자 이름: 전체 이메일 주소
    • 비밀번호: 귀하의 비밀번호
  6. "로그인"을 클릭하여 설정을 완료하세요.

Gmail(메일 보내기)

  1. Gmail을 열고 설정 > 계정 및 가져오기로 이동합니다.
  2. "메일 보내기"에서 "다른 이메일 주소 추가"를 클릭하세요.
  3. 이름과 이메일 주소를 입력하신 후 "다음 단계"를 클릭하세요.
  4. 다음 SMTP 서버 세부 정보를 입력하세요.
    • SMTP 서버: smtp.forwardemail.net
    • 포트: 465
    • 사용자 이름: 전체 이메일 주소
    • 비밀번호: 귀하의 비밀번호
    • "SSL을 사용한 보안 연결"을 선택하세요
  5. "계정 추가"를 클릭하고 이메일 주소를 확인하세요.

일반적인 문제 및 솔루션

  1. 인증 실패

    • 사용자 이름(전체 이메일 주소)과 비밀번호를 확인하세요
    • 올바른 포트(SSL/TLS의 경우 465)를 사용하고 있는지 확인하세요.
    • 귀하의 계정에 SMTP 액세스가 활성화되어 있는지 확인하세요
  2. 연결 시간 초과

    • 인터넷 연결을 확인하세요
    • 방화벽 설정이 SMTP 트래픽을 차단하지 않는지 확인하세요.
    • 다른 포트(STARTTLS를 사용하는 587)를 사용해 보세요.
  3. 메시지 거부됨

    • "보낸 사람" 주소가 인증된 이메일과 일치하는지 확인하세요.
    • IP가 블랙리스트에 등록되었는지 확인하세요
    • 메시지 내용이 스팸 필터를 트리거하지 않는지 확인하세요.
  4. TLS/SSL 오류

    • 최신 TLS 버전을 지원하도록 애플리케이션/라이브러리를 업데이트하세요.
    • 시스템의 CA 인증서가 최신 상태인지 확인하세요
    • 암묵적 TLS 대신 명시적 TLS를 시도하세요

도움 받기

여기에 언급되지 않은 문제가 발생하면 다음을 수행하세요.

  1. 우리의 것을 확인하세요 FAQ 페이지 일반적인 질문에 대한
  2. 우리의 검토 이메일 배달에 대한 블로그 게시물 자세한 정보는
  3. 당사 지원 팀에 문의하세요. support@forwardemail.net

Forward Email의 SMTP 서비스는 애플리케이션과 이메일 클라이언트에서 이메일을 보내는 안정적이고 안전하며 개인 정보 보호에 중점을 둔 방법을 제공합니다. 지능형 대기열 시스템, 5일 재시도 메커니즘, 포괄적인 배달 상태 알림을 통해 이메일이 목적지에 도착할 것이라고 확신할 수 있습니다.

더욱 고급 사용 사례나 맞춤형 통합에 대한 내용은 당사 지원팀에 문의하세요.