Is mail() allowed?

Status
Not open for further replies.

JiamTaoLoTi

New Member
Messages
5
Reaction score
0
Points
0
Please enlighten me on this. I tried to run my program and it says due to security reasons the function mail() is disabled. How to solve this problem?
 

DeadBattery

Community Support Team
Community Support
Messages
4,018
Reaction score
120
Points
0
Go to x10hosting.com/login and login with your forum username and password.
On the left, you will see that you have basic PHP. If you select Intermediate (level 2), and give a reason why you want intermediate, you will have mail (and other things) enabled.
It is quite simple.
:)
 

tittat

Active Member
Messages
2,478
Reaction score
1
Points
38
Apply for intermediate version only.
And advanced version will only be allowed for strong reasons and need to aprrovecby Brandon.
I will say intermediate version will work fine for you.
 

JiamTaoLoTi

New Member
Messages
5
Reaction score
0
Points
0
Thank you all for helping me. I requested for the intermediate lvl php and I am granted my request =). However I tried to send mail just now using my code:
<html><head><title>LabLink: Contact Us!</title></head><body><?phpif (!$_POST['submit']){?><form method="post">Username:<br /> <input type="text" name="usernow"><br />Please enter your email here:<br /> <input type="text" name="email"><br /><input type="submit" name="submit" value="Change Password"><br /></form><?php} else {$emailer=$_POST['email'];$headers = "From:JiamTaoLoTi@hotmail.com\r\n";$headers .= "Reply-To:JiamTaoLoTi@hotmail.com\r\n";$headers .= "Content-Type: text/html;\r\n charset=\"iso-8859-1\"\r\n";$body ="<html> <head> <title>Email!</title></head><body><p>Hi, Thank you for posting this query!</p></body></html>";mail("$emailer","Testing",$body,$headers);}?></body></html>
it does not work can please help me?
 

Russ

<b>Retired *****</b>
Messages
3,168
Reaction score
2
Points
38
It can take up to 12 hours for the php change to go into effect. Give it some more time, and see if it clears up.
 

ArchinNO

New Member
Messages
30
Reaction score
0
Points
0
Thanks
Edit:
___________
| |
| |
| |
|___________|
 
Last edited:
Status
Not open for further replies.
Top