Arkadaşlar merhaba,
Sisteme üye olanlara ve birisi sisteme üye olduğunda giden mail lerdeki gönderici adını acaba nerden ayarlayabiliriz ? Mesela bende wordpress@siteadi.com çıkyor.
wp-mail.php dosyasında şu satırları buldum, $line değişkeni ile alakalı olabilir sanırım. Yoksa bu sorunu direk sunucu ayarlarımızdan mı yapacağız ?
Yardımlarınız için teşekkürler...
// Set the author using the email address (To or Reply-To, the last used)
// otherwise use the site admin
if (preg_match('/From: /', $line) | preg_match('Reply-To: /', $line)) {
$author=trim($line);
if ( ereg(\\"([a-zA-Z0-9\_\-\.]+@[\a-zA-z0-9\_\-\.]+)\\", $author , $regs) ) {
$author = $regs[1];
echo \\"Author = {$author} \\";
$author = $wpdb->escape($author);
Çözülmüş