Script URL: http://www.xpipoca.com/suporte
Version of script: latest
Hosting company: pronethosting
URL of phpinfo.php: http://www.xpipoca.com/suporte/phpinfo.php
URL of session_test.php: http://www.xpipoca.com/suporte/session_test.php
What terms did you try when SEARCHING for a solution: email
Write your message below:
I dont know to much about computers.... sorry
I found some topics regarding email...but i still didnt get it..
How can i put email working on my site ?
PHP.ini ? Where ?
Thnks a Lot
Luis...
email How ??
Moderator: mkoch227
Hesk uses standard PHP mail() command so if sending e-mail doesn't work something is wrong with that. Check with your hosting company and see if they have disabled the mail() php command or have any other restrictions about sending e-mails from scripts.
Hmm, I have the feeling I am repeatedly repeating myself
Hmm, I have the feeling I am repeatedly repeating myself

Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Hi,
It's all setup, if mail() works correctly then nothing else needs to be done for Hesk to send out e-mails.
Check with your host first to see if they have any restrictions with PHP mail, but I do have some hosts listed here:
http://www.phpjunkyard.com/hosting.php
Regards
It's all setup, if mail() works correctly then nothing else needs to be done for Hesk to send out e-mails.
Check with your host first to see if they have any restrictions with PHP mail, but I do have some hosts listed here:
http://www.phpjunkyard.com/hosting.php
Regards
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
I found this in my hosting webpage :
Mail sample (PHP)
Solution
The following is a working sample of how to send mail with PHP on our hosting accounts. Please note that we do not provide support for this sample. It is only provided as a guide to help you get started.
This is what the PHP code looks like:
--------------------------------------------------------------------------------
<?php
$to = 'he@hisdomain.com';
$subject = 'this is the subject of the mail';
$message = 'this is the body of the mail';
$headers = 'From: me@mydomain.com' . "\r\n" .
'Reply-To: me@mydomain.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>
What file i need to change ?
Mail sample (PHP)
Solution
The following is a working sample of how to send mail with PHP on our hosting accounts. Please note that we do not provide support for this sample. It is only provided as a guide to help you get started.
This is what the PHP code looks like:
--------------------------------------------------------------------------------
<?php
$to = 'he@hisdomain.com';
$subject = 'this is the subject of the mail';
$message = 'this is the body of the mail';
$headers = 'From: me@mydomain.com' . "\r\n" .
'Reply-To: me@mydomain.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>
What file i need to change ?
Hi,
What are your settings for $hesk_settings['support_mail'], $hesk_settings['webmaster_mail'] and $hesk_settings['noreply_mail'] in hesk_settings file (you can PM me with this info)?
If not already make sure they are set to a @xpipoca.com e-mail address in case your host allows sending from local domains only.
What are your settings for $hesk_settings['support_mail'], $hesk_settings['webmaster_mail'] and $hesk_settings['noreply_mail'] in hesk_settings file (you can PM me with this info)?
If not already make sure they are set to a @xpipoca.com e-mail address in case your host allows sending from local domains only.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
That means your host has restricted sending e-mails form PHP scripts (user "Nobody") to local domains only (domains hosted on your server). It's what some hosts do for "security reasons".
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools