• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved Mail send

VirrageS

←•†ĿuĀ && ©¤¤•→
Joined
May 30, 2010
Messages
984
Reaction score
63
Location
Poland
Hello
I have question.

How I can change sender the mail after create account (Now is Root User) ??
 
Last edited:
You mean the account displayed as "sender" in the email you get when registering an account?

You should be able to change that in the config.php file.
 
Do you mean this?
If not then explain more the problem
Code:
// E-MAIL config
$config['site']['send_emails'] = 0; // is acc. maker configured to send  e-mails? 0 = no   1 = yes
$config['site']['mail_address'] = "[email protected]"; // e-mail address
$config['site']['smtp_enabled'] = "yes"; // send by smtp or mail function (set 0 if use mail function)
$config['site']['smtp_host'] = "smtp.gmail.com"; // address
$config['site']['smtp_port'] = 465; // port
$config['site']['smtp_auth'] = "yes"; // need authorization? (set 0 if not need auth)
$config['site']['smtp_user'] = "login"; // login
$config['site']['smtp_pass'] = "password"; // password
 
Nope I have this configured.

Explain:

When I create account and go to my email then I have got mail:

Code:
[B]From:[/B]
Root User // [I]<-- I want to change it[/I]

"Sender" I mean that who sent email

I explained it how I can
 
You mean, when the E-mail come to your hotmail, you wanna change like
from "VirrageS-Server" (for example), Instead at 'Root User' ?

If yes, then.
xamp / htdocs / phpmailer

Code:
  public $FromName          = 'Root User';
 
Back
Top