أمثلة على تكامل SMTP

يقدم هذا الدليل أمثلة مفصلة حول كيفية التكامل مع خدمة SMTP من Forward Email باستخدام لغات برمجة وأطر عمل وبرامج بريد إلكتروني متنوعة. صُممت خدمة SMTP لتكون موثوقة وآمنة وسهلة التكامل مع تطبيقاتك الحالية.

قبل الخوض في أمثلة التكامل، من المهم فهم كيفية معالجة خدمة SMTP الخاصة بنا لرسائل البريد الإلكتروني:

نظام قائمة انتظار البريد الإلكتروني وإعادة المحاولة

عند إرسال بريد إلكتروني عبر SMTP إلى خوادمنا:

  1. المعالجة الأولية:تم التحقق من صحة البريد الإلكتروني وفحصه بحثًا عن البرامج الضارة والتحقق منه باستخدام مرشحات البريد العشوائي
  2. قائمة انتظار ذكية:يتم وضع رسائل البريد الإلكتروني في نظام انتظار متطور للتسليم
  3. آلية إعادة المحاولة الذكية:إذا فشل التسليم مؤقتًا، فسوف يقوم نظامنا بما يلي:
    • تحليل استجابة الخطأ باستخدام getBounceInfo وظيفة
    • تحديد ما إذا كانت المشكلة مؤقتة (على سبيل المثال، "حاول مرة أخرى لاحقًا"، "مؤجلة مؤقتًا") أو دائمة (على سبيل المثال، "مستخدم غير معروف")
    • بالنسبة للمشكلات المؤقتة، قم بتحديد البريد الإلكتروني لإعادة المحاولة
    • بالنسبة للمشكلات الدائمة، قم بإنشاء إشعار ارتداد
  4. فترة إعادة المحاولة لمدة 5 أيام:نحاول إعادة التسليم لمدة تصل إلى 5 أيام (على غرار معايير الصناعة مثل Postfix)، مما يمنح المشكلات المؤقتة وقتًا للحل
  5. إشعارات حالة التسليم:يتلقى المرسلون إشعارات حول حالة رسائل البريد الإلكتروني الخاصة بهم (تم التسليم أو التأخير أو الارتداد)

[!ملاحظة] بعد نجاح التسليم، يُحذف محتوى بريد 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

فيما يلي كيفية دمج Forward Email SMTP مع تطبيق Express.js:

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، أضف ما يلي إلى ملفك 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، قم بتحديث .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}"

ثم أرسل رسائل البريد الإلكتروني باستخدام واجهة Mail الخاصة بـ Laravel:

<?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!"

استخدام واجهة برمجة تطبيقات Java Mail

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.forwardemail.net لـ POP3)
    • خادم البريد الصادر: smtp.forwardemail.net
    • اسم المستخدم: عنوان بريدك الإلكتروني الكامل
    • كلمة المرور: كلمة المرور الخاصة بك
  6. انقر فوق "تسجيل الدخول" لإكمال الإعداد

Gmail (إرسال البريد باسم)

  1. افتح Gmail وانتقل إلى الإعدادات > الحسابات والاستيراد
  2. تحت "إرسال البريد باسم"، انقر فوق "إضافة عنوان بريد إلكتروني آخر"
  3. أدخل اسمك وعنوان بريدك الإلكتروني، ثم انقر فوق "الخطوة التالية"
  4. أدخل تفاصيل خادم SMTP التالية:
    • خادم SMTP: smtp.forwardemail.net
    • المنفذ: 465
    • اسم المستخدم: عنوان بريدك الإلكتروني الكامل
    • كلمة المرور: كلمة المرور الخاصة بك
    • حدد "اتصال آمن باستخدام SSL"
  5. انقر فوق "إضافة حساب" وتحقق من عنوان بريدك الإلكتروني

القضايا والحلول الشائعة

  1. فشل المصادقة

    • التحقق من اسم المستخدم (عنوان البريد الإلكتروني الكامل) وكلمة المرور
    • تأكد من استخدام المنفذ الصحيح (465 لـ SSL/TLS)
    • تحقق مما إذا كان حسابك يحتوي على إمكانية الوصول إلى SMTP
  2. مهلة الاتصال

    • تحقق من اتصالك بالإنترنت
    • التحقق من أن إعدادات جدار الحماية لا تمنع حركة مرور SMTP
    • حاول استخدام منفذ مختلف (587 مع STARTTLS)
  3. تم رفض الرسالة

    • تأكد من أن عنوان "من" الخاص بك يتطابق مع بريدك الإلكتروني المعتمد
    • تحقق مما إذا كان عنوان IP الخاص بك مدرجًا في القائمة السوداء
    • تأكد من أن محتوى رسالتك لا يؤدي إلى تشغيل مرشحات البريد العشوائي
  4. أخطاء TLS/SSL

    • قم بتحديث تطبيقك/مكتبتك لدعم إصدارات TLS الحديثة
    • تأكد من أن شهادات CA الخاصة بنظامك محدثة
    • جرب TLS الصريح بدلاً من TLS الضمني

الحصول على المساعدة

إذا واجهت مشكلات غير مذكورة هنا، يرجى:

  1. تحقق من موقعنا صفحة الأسئلة الشائعة للأسئلة الشائعة
  2. قم بمراجعة تدوينة حول تسليم البريد الإلكتروني للحصول على معلومات مفصلة
  3. اتصل بفريق الدعم لدينا على support@forwardemail.net

توفر خدمة SMTP من Forward Email طريقة موثوقة وآمنة تُراعي الخصوصية لإرسال رسائل البريد الإلكتروني من تطبيقاتك وبرامج البريد الإلكتروني. بفضل نظامنا الذكي لقوائم الانتظار، وآلية إعادة المحاولة خلال 5 أيام، وإشعارات حالة التسليم الشاملة، كن على ثقة بأن رسائلك ستصل إلى وجهتها.

للحصول على حالات استخدام أكثر تقدمًا أو تكاملات مخصصة، يرجى الاتصال بفريق الدعم الخاص بنا.