I تشغيل VPS التي تستضيف العديد من المجالات. وقد تم إرسال البريد من هذه المجالات دائما صعبة. لقد استخدمت لفترة طويلة WP SMTP المساعد الإلكتروني لورد للتغلب على هذه, ولكن أردت أن تحصل على الإصلاح الصحيح. After much reading I found a proper solution
The problem is that the “from” address and the “return to” address have to match and unless you know how to fully do the code they wont.
رمز لمواقع غير وورد
$رسالة = 'رسالتك هنا "; $مرسل = 'you@yourdomain.com "; $رؤوس = 'من: ' . $مرسل . "\ص ن" . 'الرد على: ' . $مرسل . "\ص ن" . 'مسار العودة: ' . $مرسل; $الموضوع = 'موضوعك "; $نجاح = الإلكتروني('متلق @ الإلكتروني ", $موضوع, $رسالة, $رؤوس, "-و " . $مرسل);
ملحوظة, الجزء الرئيسي هو الجزء الأخير, the extra value AFTER the headers. This is the extra parameters part and we specify the sender again with a ‑f command
For more info on this there is a good article at Pupunzi
لورد
Simply add the following code to your theme’s functions.php or create a custom plugin with the code
الطبقة email_return_path { وظيفة __construct() { ADD_ACTION( "phpmailer_init", مجموعة( $هذا, 'الإصلاح' ) ); } الإصلاح وظيفة( $phpmailer ) { $phpmailer->Sender = $phpmailer->From; } } email_return_path جديدة();
بفضل Kinamo للمعلومات
“Hi James I realise it has been a long while, but I just checked this on windows 11 (build 23H2)…”