php den anlayan varmı varsa (lütfen içeri)

QARİF
19-10-2011, 21:35   |  #1  
QARİF avatarı
OP Yıllanmış Üye
Teşekkür Sayısı: 0
131 mesaj
Kayıt Tarihi:Kayıt: Kas 2010

adresim:forumbosstan@gmail.com
----------------------------------------------------------------------------------------------------------------------------
/**
 * MyBB 1.6
 * Copyright 2010 MyBB Group, All Rights Reserved
 *
 * Website: http://mybb.com
 * License: http://mybb.com/about/license
 *
 * $Id: php.php 5297 2010-12-28 22:01:14Z Tomm $
 */

// Disallow direct access to this file for security reasons
if(!defined("IN_MYBB"))
{

die("Direct initialization of this file is not allowed.


Please make sure IN_MYBB is defined.");
}

/**
 * PHP mail handler class.
 */
class PhpMail extends MailHandler
{

/**

* Additional parameters to pass to PHPs mail() function.

*

* @var string

*/

public $additional_parameters = '';


/**

* Sends the email.

*

* @return true/false whether or not the email got sent or not.

*/

function send()

{

global $lang, $mybb;


// For some reason sendmail/qmail doesn't like \r\n

$this->sendmail = @ini_get('sendmail_path');

if($this->sendmail)

{

$this->headers = str_replace("\r\n", "\n", $this->headers);

$this->message = str_replace("\r\n", "\n", $this->message);

$this->delimiter = "\n";

}


// Some mail providers ignore email's with incorrect return-to path's so try and fix that here

$this->sendmail_from = @ini_get('sendmail_from');

if($this->sendmail_from != $mybb->settings['forumbosstan@gmail.com'])

{

@ini_set("sendmail_from", $mybb->settings['forumbosstan@gmail.com']);

}


// If safe mode is on, don't send the additional parameters as we're not allowed to

if(ini_get('safe_mode') == 1 || strtolower(ini_get('safe_mode')) == 'on')

{

$sent = @mail($this->to, $this->subject, $this->message, trim($this->headers));

}

else

{

$sent = @mail($this->to, $this->subject, $this->message, trim($this->headers), $this->additional_parameters);

}

$function_used = 'mail()';


if(!$sent)

{

$this->fatal_error("MyBB was unable to send the email using the PHP {$function_used} function.");

return false;

}


return true;

}
}
?>

Son Düzenleme: QARİF ~ 19 Ekim 2011 22:41
QARİF
19-10-2011, 22:47   |  #2  
QARİF avatarı
OP Yıllanmış Üye
Teşekkür Sayısı: 0
131 mesaj
Kayıt Tarihi:Kayıt: Kas 2010

cevap verin lütfen

programmer
23-02-2012, 17:57   |  #3  
Taze Üye
Teşekkür Sayısı: 0
5 mesaj
Kayıt Tarihi:Kayıt: Mar 2006

public $additional_parameters = '';
burası hatalı sanırım