Need help sending HTML message in PHP.

This is a discussion on "Need help sending HTML message in PHP." within the PHP Forum section. This forum, and the thread "Need help sending HTML message in PHP. are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > PHP Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Sep 14th, 2007, 06:31
New Member
Join Date: Sep 2007
Location: India
Age: 21
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Need help sending HTML message in PHP.

Code:


//HTML Email sending php

$wheretosend = "info@abc.com";
$ToName = "ABC xco. Pvt. Ltd.";
$ToSubject = "Enquiry Information";

$Message="<p>";
$Message=$Message."Hi, i am fine";
$Message=$Message."</p>";


$headers = "From: ".$email."\r\n";
$headers .= "To: ".$ToName."<".$wheretosend.">\r\n";
$headers .= "Content-type: text/html\r\n";

mail($ToEmail,$ToSubject, $Message, $headers);

Last edited by Lchad; Sep 17th, 2007 at 11:41. Reason: deleted link... stop spamming please
Reply With Quote

Reply

Thread Tools

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 On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Html button sending data to flash movie..how??? webworks Flash & Multimedia Forum 2 Sep 23rd, 2007 16:13
Form2Email build message with html, I need help vandiermen PHP Forum 8 Apr 30th, 2007 15:28
problem with images when sending html page by mail juanb007 Web Page Design 4 Apr 29th, 2007 03:25
Sending Mail, Body message from database chlad Classic ASP 3 Nov 16th, 2006 04:05
Sending HTML only on Submit. JohnMitch JavaScript Forum 10 Oct 20th, 2004 09:09


All times are GMT. The time now is 07:26.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43