MyBB Community Forums

Full Version: Email verification details changing
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to change details which we receive in verification email?

Means,,

when we register on anysite, we get verification email.
it contebt,

welcome ABC,
THANKS FOR REGISTRATION.CLICK ON BELOW LINK TO VERIFY YOUR ACCOUNT.

can i change this detail except verification link ?
thank you.
That can be edited in

/inc/languages/yourlanguage/mesesages.lang.php
thank you bro....but there is no such email text which we get while verification email.
where to edit it.
You will need to look harder. It's in inc/languages/english/messages.lang.php and starts on line 249 I think.

What to look for:

$l['email_activateaccount'] = "{1},

To complete the registration process on {2}, you will need to go to the URL below in your web browser.

{3}/member.php?action=activate&uid={4}&code={5}

If the above link does not work correctly, go to

{3}/member.php?action=activate

You will need to enter the following:
Username: {1}
Activation Code: {5}

Thank you,
{2} Staff";

$l['email_activateaccount1'] = "{1},

To complete the registration process on {2}, you will need to go to the URL below in your web browser.

{3}/member.php?action=activate&uid={4}&code={5}

If the above link does not work correctly, go to

{3}/member.php?action=activate

You will need to enter the following:
Your email address
Activation Code: {5}

Thank you,
{2} Staff";

$l['email_activateaccount2'] = "{1},

To complete the registration process on {2}, you will need to go to the URL below in your web browser.

{3}/member.php?action=activate&uid={4}&code={5}

If the above link does not work correctly, go to

{3}/member.php?action=activate

You will need to enter the following:
Username: {1} (Or your email address)
Activation Code: {5}

Thank you,
{2} Staff";
ohhh...thank you.