Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
Old 11-21-2012, 06:45 PM Sending email
konetch's Avatar
Ultra Talker

Posts: 288
Trades: 0
How can I send an email using php. I used the mail() function on my website. The site is hosted on justhost.com, and I know they have the ability to send email with php set up with their site, but everytime I use that function it won't work or it takes several hours for the email to appear.

Anyone know of a more effective way to send emails using php? Thanks for the help.
__________________
Alex
konetch is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 11-21-2012, 06:46 PM Re: Sending email
konetch's Avatar
Ultra Talker

Posts: 288
Trades: 0
The code I use is
PHP Code:
$sendMessage mail($sEmail"Reset Password"$sMailMessage"""-f no-reply@mysite.com"); 
__________________
Alex
konetch is offline
Reply With Quote
View Public Profile
 
Old 11-21-2012, 06:58 PM Re: Sending email
NullPointer's Avatar
Will Code for Food

Posts: 2,883
Name: Matt
Location: Irvine, CA
Trades: 0
Read the full documentation for mail:
http://us1.php.net/manual/en/function.mail.php

You have to set headers:
PHP Code:
<?php
$to      
'nobody@example.com';
$subject 'the subject';
$message 'hello';
$headers 'From: webmaster@example.com' "\r\n" .
    
'Reply-To: webmaster@example.com' "\r\n" .
    
'X-Mailer: PHP/' phpversion();

mail($to$subject$message$headers);
?>
__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
NullPointer is offline
Reply With Quote
View Public Profile Visit NullPointer's homepage!
 
Old 11-23-2012, 12:48 AM Re: Sending email
konetch's Avatar
Ultra Talker

Posts: 288
Trades: 0
thank you for the answer
__________________
Alex
konetch is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Sending email
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.22243 seconds with 11 queries