میں نے ایک رن VPS جو متعدد ڈومینز کی میزبانی کرتا ہے. ان ڈومینز سے میل بھیجنا ہمیشہ مشکل رہا. میں طویل عرصے سے استعمال کیا ہے WP SMTP اس کے ارد گرد کام کرنے کے لئے ورڈپریس کے لئے میل پلگ ان, لیکن میں ایک ٹھیک ٹھیک کرنا چاہتا تھا. بہت پڑھنے کے بعد مجھے ایک مناسب حل ملا
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'; $ہیڈرز = 'سے: ' . $مرسل . "\r\n" . 'کا جواب دیں: ' . $مرسل . "\r\n" . 'واپسی کا راستہ: ' . $مرسل; $مشروط = 'اپنے موضوع'; $کامیابی = میل('recepient @ میل', $مضمون, $پیغام, $سرنامے, "-چ " . $مرسل);
نوٹ, کلیدی حصہ حتمی حصہ ہے, 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)…”