Geeks Talk

Prepare for your Next Interview




send email using php

This is a discussion on send email using php within the PHP forums, part of the Web Development category; hi, i want to send a email using php with the headers and CC ... if anyone have the code plz post here...otherwise plz tell me how can i send ...


Go Back   Geeks Talk > Web Development > PHP

Register FAQ Members List Calendar Mark Forums Read
  #1 (permalink)  
Old 01-13-2007
Contributing Member
 
Join Date: Sep 2006
Location: bangalore, india
Posts: 1,007
Thanks: 0
Thanked 76 Times in 64 Posts
psuresh1982 will become famous soon enough
send email using php

hi,

i want to send a email using php with the headers and CC ...
if anyone have the code plz post here...otherwise plz tell me how can i send it ? i am a new learner of php.

--------------
suresh
Reply With Quote
The Following User Says Thank You to psuresh1982 For This Useful Post:
Sponsored Links
  #2 (permalink)  
Old 02-06-2007
Junior Member
 
Join Date: Jan 2007
Posts: 3
Thanks: 0
Thanked 1 Time in 1 Post
ravi_shekhar80 is on a distinguished road
Re: send email using php

// To send HTML mail, the Content-type header must be set

$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

// Additional headers
$headers .= 'To: ABC <abc@abc.com>, def <def@def.com>' . "\r\n";
$headers .= 'From: Me <xyz@xyz.com>' . "\r\n";
$headers .= 'Cc: pqr@pqr.com' . "\r\n";
$headers .= 'Bcc: pqr@pqr.com' . "\r\n";

// Mail it
mail($to, $subject, $message, $headers);
Reply With Quote
The Following User Says Thank You to ravi_shekhar80 For This Useful Post:
Reply

  Geeks Talk > Web Development > PHP


Thread Tools
Display Modes


Similar Threads

Thread Thread Starter Forum Replies Last Post
PHP Code to email HTML Page along with PDF Attachment Shivanna PHP 0 10-11-2006 05:57 AM
About Email blenda Interviews 1 08-14-2006 05:14 AM


All times are GMT -4. The time now is 05:21 AM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Copyright © 2008 GeekInterview.com. All Rights Reserved