Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    PHP


SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





Sending Mail: Choice Between Sending Receipt, Or HTML Formatting


I'm using PHP's mail function to send out a message via email.

I would like for this email message to send a receipt when read as well as send an HTML formatted email. Both aspects are important to me.

I know this is a product of the mail header. This is the format I currently have:

mail(to, subject, body, "From: name <email>
Disposition-Notification-To: name<email>
Content-type:text/html;charset=utf-8");

This prompts the email program to send a reciept, but the email message is not in the HTML format, and even contains "Content-type:text/html;charset=utf-8" at the top of the body.

If I switch the order to this format:

mail(to, subject, body, "From: name <email>
Content-type:text/html;charset=utf-8
Disposition-Notification-To: name<email>");

This sends the email with HTML formatting but does not prompt the sending of the receipt. I also get "Disposition-Notification-To: name<email>" at the top of the email message.

This tells me there is a problem in the transition between the headers, which currently is "".

What am I doing wrong?




View Complete Forum Thread with Replies

Related Forum Messages:
Sending Html Via Mail
I want to send mail that is formatted as nicely as possible.
For this, I plan to send raw html code URL...but the mail prints out the html also...how do i make the html formatting show ?? I guess I'll have to add some specific header...is it true ??

View Replies !
Sending Html Mail?
I made a .html file taht I want to send by mail, but not as a attatchment. I want it to be sendt as a html mail.

I could use microsoft word and send it trough there, but word will change some of the html code.

View Replies !
Sending HTML Mail Using PHP
I know how to send plain text e-mail using PHP's mail() function, but how to send HTML e-mails using mail() function.

View Replies !
Sending Html Mail
A client wants to send out a mail in html including graphics. The idea
is that it looks like a personalised coupon that they can print off.
I've had a look at http://phpmailer.sourceforge.net/ and the html
example seems pretty straightforward but it doesn't give much
information on the graphics. Should the images be sent as attachments
and simply referenced in the html or am I completely off track here?
--

View Replies !
Html Mail Sending
I tried to send emails in html format in this line : PHP Code:

View Replies !
Sending HTML Mail()'s
I have a problem when sending HTML mail (using css). The mails just incluse all the HTML tags... So can you send both text and HTML so that the server receiving can use the text mail if HTML mail is not supported?

Or is it always best only to use plain text as I understand is advised? - it is the first time Ill use the mail() function.

View Replies !
Sending HTML Mail To Outlook Express With Mail()
I'm sending out an HTML mailer using the mail() function in PHP. I'm appending all of the headers to the message. This message displays correctly in Hotmail, Outlook 2000, and even Mac's OSX mail client. But, for some reason, Outlook Expess (on Win XP & OSX) displays the HTML code and doesn't render it.

If, however, the recipient copies the HTML code and composes a new HTML message in Outlook Express, it gets sent correctly.

This particular user is also getting other HTML mailers that display correctly, so I know that the client is capable of accepting HTML mail.

I'm led to believe that PHP's mail() headers are not being interpreted correctly. In fact, they appear as the first 3 lines in the body of the message when viewed in Outlook Express. OK, here are some samples to tie this all together: First, the mail() code I'm using: PHP Code:

View Replies !
Sending HTML Email With Mail();
i have set up this script from other scripts but sometime it does not send any email and other times it does
with this im not shure why,i have edited other mail scripts and finaly come up with this which when it works works well.
there are two identicle mail functions there the first sends a email to the user saying thanks for registering the second sends a email to 4 admins telling them about the new user.

can you pick out why it,s not working?

View Replies !
Sending HTML Using The Mail() Function
Im trying to send html via mail() but its not outputing the html. Is there something I need to alter in php.ini Code:

View Replies !
Sending Mail In HTML Format
I am sending mail through PHP but the HTML tags are not working, Code:

View Replies !
Sending HTML Email Using The PHP Mail Function
I am encountering a very strange problem when sending HTML email using the PHP Mail Function. Each email that goes out has a "! " inserted into the body of the message... I have checked the body code and it is definitely not in there...

View Replies !
Sending A Html Document Using Mail() Function
I need to send the following code in an email...but its a mix of php and html, and it retrieves various values from a database before sending...oh and i wouldnt mind the sending of the mail to be done on a button click!...anyways i have messed and messed but i aint too sure whether it can be done! Can someone please tell me the code and where i need to place it within my code? Code:

View Replies !
Error In Sending Html Page With Attachment In Mail
i am sending a mail with attachment. the text mail with attachment is going in rght way ...but when i try to send a HTML Mail(text coming from a HTML Editor) with attachment the mail .. i got some kind of error ... the mail and attachment goes .. but the problem is the HTml page display as its is ...like its display as source code whatever a typed in editor..

View Replies !
Sending Php/html Document As An Email Using Php Mail() Function
I need to send the following code in an email ... but its a mix of php and html, and it retrieves various values from a database before sending...oh and i wouldnt mind the sending of the mail to be done on a button click!;)...anyways i have messed and messed but i aint too sure whether it can be done! Can someone please tell me the code and where i need to place it within my code? .....

View Replies !
Shows Html Code While Sending Mail Problem ??
I am using my mail function to send the mail, mail successfully goes but the problem is its shows all the html codes and also the name is blank in the from section (Note: I am using outlook express) Code:

View Replies !
PHP Mail Not Sending Mail To Itnernal Email Address
Running a PHP mail script on Linux which has Exchange as the mail
server. The script does not send mail to any internal email address but sends
it to any other address outside its domain!

View Replies !
Sending Mail With Php
I created a registration form with html and php. And i want that when they fill the form correctly they get an e-mail message. I don't know how to do that. Please help.

View Replies !
Sending Mail In PHP
I have a few sections on my site that send me email when a user submitts various forms. I use the mail() function.

This is an example:

$sendto = "me@mysite.com";
$email = "replay@mysite.com";
$message = "Message from user.";

$subject = "Website Feedback - " . date("m/d/y");
$headers = "From: "Online-Website-Feedback" <****@mysite.com>";
$headers .= "Reply-To: $email";
$headers .= "MIME-Version: 1.0";
$headers .= "Content-Type: text/html; charset=ISO-8859-1";
$headers .= "Content-Transfer-Encoding: 8bit;";
$headers .= stripslashes($input);
$headers .= "";

mail($sendto, $subject, $message, $headers);

For some reason though not all emails are sent to me. I setup a little database action that everytime a user views my feedback form it adds to the database that a use viewed the form at this time. Then I set it so whenever a user submits the form it adds his info to the database, emails me, and adds to the database that a user submitted the form. So I have a few inserts in my database that say a few people have submitted the form, but I have no email from my site about their feedback.

I was curious if the mail() function is a good function to use or if there is a better way to send mail. I am also using this function for order confirmations with my shopping cart and if some emails arent being sent that will give me problems down the road with orders not being completed.

So in basic terms what is the easiest, most secure, most reliable way of sending email from a website in php?

View Replies !
( Sending Mail )
I have this php file that sends the result from my forms on my site, but i need that the email captured in the forms appear instead the mail that i have on my code I've tried to change it by the variable name i use in forms ($email) but i can't get it done. PHP Code:

View Replies !
Sending Mail With PHP On IIS
I'm running an app created in PHP running on IIS. Everything is working fine, except I need to send email through PHP, and IIS does not have sendmail. How can I work around this?

View Replies !
Sending Mail
I'm getting an error when I try sending an email from some code I have
written:

"<?php

print "Thank you, <b>$_POST[name]</b>, for your message!<br><br>";
print "Your e-mail address is <b>$_POST[email]</b><br><br>";
print "Your message was:<br><br>";
print "$_POST[message] <br><br>";

// Start building the mail string
$msg = "Name: $_POST[name]";
$msg .= "Email: $_POST[email]";
$msg .= "Message: $_POST[message]";

// Set up the mail .....

View Replies !
Sending Mail ....
I'm trying to send email with code that I've had taken from a form. The code input is in html form, and I want to take this code and send it in an email.

I have no problem sending a MIME message using pear, if the mime is already placed in, but when I try to place the code from the form it just displays it as it is, and doesnt apply any html to it. Code:

View Replies !
Mail() Not Sending
I've been working on this for a couple days now, I'm sure it's something easy, but I don't see it. I'm just trying to send an email using the mail() function. I have done this in the past using PHP but it's been a couple years. I have Sendmail on my machine (pre-installed in OS X) but don't know if it's configured right.

I have tried a few different PHP scripts, a couple from these forums, and am still not getting any mail sent. I have also tried a script that is working on a different box. Does anyone know of a way I can test Sendmail without PHP to see if there is a problem there? Or any advise otherwise?

View Replies !
Mail Sending
how can i send a mail through php. if i just have a use emai id. i just have to send a email on this id. how can i do that through php.

View Replies !
Sending PHP Mail
I created a form that should be sent by the server when the client click on Submit. However, the form doesn't work unless it is fill out completely. What should I do to send only what is on the form it doesn't matter if it is not fill out completely?

View Replies !
Sending A Lot Of Mail
I have say a thousand or so of my customers e-mails to send out, is their a way that I could set the execution time at the beginning of the script and loop through sending an e-mail to each individual one by one and pausing in between. I know the browser might time out after 30 seconds if it does not receive any new data. Could I run a loop that would send a message to the browser every 10 seconds while running the sleep/mail loop.

View Replies !
Sending Mail.
I'm in need of a code that sends mail to specified persons. That is,i've a hyperlink when clicked show open a page which specifies as the following:

To:
Cc:
Subject:
Description:

Send ClearDescription

The to is for sending to an email address which is say xyz@yahoo.com which is constant and should come automatically when the hyperlink is clicked and also same for Cc. When i click send i should be sent to the recipients. Almost same as other sending mail websites.

View Replies !
Sending Mail In Omni HTTPd With Mail()
Whenever I try and use the mail function I get a "Failed to Connect" error. I'm running PHP4.0, Omni Httpd 2.06 on Win98. Is there something else I have to do to enable email? I know if worked before on PWS, but I switched because I couldn't get PHP4 to run under PWS. Any help is greatly appreciated.

View Replies !
Sending Mail Without The Mail Client Popping Up
I was wondering how to send a mail without the mail client popping up to the user.

I want to send a mail to myself, when a user pushes a button on my homepage. Any ideas?

View Replies !
Mail Form Not Sending Mail - Server2003
I am trying to test a simple feedback form. I have php 5.0.3.3 on my dev
Windows server 2003. SMTP is working fine, as we all use it to send mail
from. PHP works fine as well, but I just cant get mail sent by php, although
no errors are reported.

Do I understand it correctly that this simple script should send me a mail?
This is just to test that it works.

<?php
mail('me@whatever.com', 'My Subject', 'message');
header( "Location: http://webserver/message_sent.htm" );
?>

Okay, the " Location: http://webserver/message_sent.htm" comes up fine, and
"<?php phpinfo() ?>" also works fine. SMTP allows relay from my subnet and
does not need authentication.

View Replies !
Mail() / Sendmail Sending Mail As Spam
Wondering if anybody knows why when sending mail through my local sendmail program using the PHP mail() function; emails either do not reach the destination, or register as spam? Prime example is: h0tm@il addresses never receive the email, gmail addresses consider the email to be spam, and my workplace receive the email about 1 hour after the program finishes.

Could it be a problem with my ISP? I am using Fedora Core 6, PHP 5 and Apache 2. Or test it yourself.. just fill out the form with some rubbish and it should send an email saying you've registered.. maybe you can figure out where I am going wrong by looking at the headers? http://aaronweb.no-ip.com:6969/?p=2

View Replies !
Sending Mail To Hotmail Using The Mail() Function
I have been doing some research into how to send mail to a Hotmail address using the mail() function provided in PHP, in previous posts I may have been wrong in mentioning that you need to add your mail server to the hotmail PostMaster website using Smart Network Data Services (SNDS), after doing some research I have found that in order to send e-mail to a Hotmail address you need to add/ask your host to add an SPF record to your domain.

What is SPF?

Well, SPF is a protocol used to eliminate forged e-mails, much like SSL certificates help eliminate phising websites. Microsoft use the SPF record against the SenderID Framework that they have in place.

How do I go about obtaining an SPF Record?

Easy! use the Microsoft wizard found at:

http://www.microsoft.com/mscorp/safety/content/technologies/senderid/wizard/

to generate a unique SPF record for your domain, then add it to your DNS server, or ask your web host to do this.

I manage my own DNS server, how do I add an SPF record to a domain?

To begin, open the DNS MMC from the Administrative Tools menu of your Windows Server 2003 system. Next, find the domain that will host the SPF DNS lookup record. 

Highlight the folder for the domain, and select Other New Records from the Action menu. You can also access this menu by right-clicking the domain folder.

The resource Record Type dialog box will be displayed. From the Select a Resource Record Type area of the screen, scroll down the list and select Text (TXT) from the list.

Click Create Record. This will bring up the New Resource Record dialog box to appear. This is where you paste the SPF record generated by the above website

----------------------------------------------------------------------------------------------------------------------------------
I hope this helps, I have tried it myself and e-mails went straight to my inbox (not junk mail). Would also appreciate feedback if this works for other providers such as Yahoo! etc as I have not tried it with them

Give me your feedback on how it works for you, also if it works possibly make this thread sticky as I'm sure it will resolve many problems for people out there who are denying access to people who have public email addresses.

View Replies !
Mail() Function Doesn't Seem To Be Sending MAIL FROM: Properly
I'm trying to send an email using the mail() function. I've carefully made use of the ini_set(SMTP, "mail.my.server") function to set my SMTP server and also to set my From: address. I'm still getting a "Relaying not explicitly allowed: fakeemail@fakedomain.com" response from the server however, when I try and set a recipient who is outside of my own
domain. This makes my think that the From: address is somehow not getting sent to my server properly or that I'm pointing at the wrong server.

The confounding thing is that it was working for a while and I don't think I changed anything and it just stopped.

I'm running these PHP pages for a client off of one of those cheap hosting services, I think it's called 1dollarhost.com or something, although I can't remember at the moment.

Has anyone else had trouble with this or found a solution?

View Replies !
Sending HTML
I made a HTML form and I want to send it to my mail without using the "mailto:" stuff. But I can only find a way to send a PHP Form to my e mail. I'm trying to send it to another page, that will send it to my e-mail. But not sure how to do that with a HTML form.

View Replies !
Sending Newsletter With PHP Mail()
I have a couple of hundred email of friends and I wanted to send them a newsletter for my site. I designed a little PHP script that fetches the emails from the database, and for each email, construct the newsletter body then invoke the php mail() function to mail to the person.

The problem is only say half of them I guess got the newsletter the rest didn't. Apparently the code broke at some point, and I actually after waiting a long time saw the famous "The page cannot be displayed" page. So it must have been broken at some point while mailing..

is it because my host php couldn't take that many calls to the mail() function ? should I put some kind of delay after each mail() call to give php time to send the email ?

or what is the best way to do this (send this newsletter to a lot of people each inidividually)

View Replies !
Sending Mail Through Localhost
I've already define SMTP and sendmail_from on my ini file but there's still no respond when I tried to send a mail from my script.

View Replies !
Mail Sending Within A While Failed
I have a table with some email addresses of a mailing list subscribers.
I'm triying to send a mail to them by querying the table and sending
the mail from a 'while' loop, but I only get sent the mail to the first
address, and no more, and the 'while' is correct and I can see the
debug traces from within for each address.

I don't know if there is any reason for this, if the smtp server is
busy sending the first mail when receiving the second and next...

View Replies !
Sending Mail Problem
my script(IMAP email client) is sending mail using imap_mail()
function.

imap_mail($To, $Subject, $Body, $headers);

$headers = "From: <$From>";
$headers .= "X-Sender: <$U@$DOMAIN>";

I have given imap host address of mauj(my server).but while sending mail
it is sending from my server not from mauj server.(while runnig tht script
from my end)

View Replies !
Problem In Sending Mail
I tried to send mail from PHP in html format. But an ! mark appears
in mail body in Inbox. I tried to print body text on page before
sending mail and it does not show ! mark. I replaced ! mark from mail
body before passing it to mail() function but then also it adds ! mark
in mail body.

View Replies !
Sending Email Using Mail()
these are my codes:

$headers = "From: ".$_POST["fromEmail"]."";
$headers .= "CC: ".$_POST["ccEmail"]."";
$toEmail = $_POST["toEmail"];
$subEmail = $_POST["subEmail"];
$conEmail = $_POST["conEmail"];

if( mail( $toEmail, $subEmail, $conEmail, $headers ) )
echo "Mail sent";
else
echo "Mail send failure - message not sent";

when i trying sending email, it gives me this errror SMTP server response: 500 please set from & to first.

View Replies !
Sending An Attachment With Mail()
I have been trying for a while to send an attachment with the PHP mail function. The problem is that the body of the message is always the contents of the attachment. For example, I have a text file whose contents is the line: "12345".

I attach this message using my mail function and have the body of the mail as "Hello there". When I receive the text file and open it, the contents read "Hello there" instead of "12345". My mail function generates the following information: Code:

View Replies !
Sending Mail Without Waiting
While using mail(), the php engine is waiting for the mail to be delivered and then proceeding to next step. Is there any way to skip this "waiting",
i.e. just send the mail, and dont wait for response and proceed to next
step?

View Replies !
Sending Out E-mail Using MySQL
I have a column in my table labeled "e-mail" - obviously containing a bunch of e-mails. I was curious if there was a script/way that could gather all those e-mail addresses together, and allow me to send one mass email to everyone. Is this possible?

View Replies !
Sending Mail Using Password?
I need to test a mail function through my IPS, who doesn't allow sending
mail without a password. Where do I specify this password? In php.ini I
can specify SMTP and sender, but apparently not password.

View Replies !
Sending E-mail Confirmations
I am hoping to build a web-registration website using PHP/MySQL, but have no experience with either. What is needed to send a confirmation e-mail to someone after they fill out a simple web-form and register for an event?

I am considering using 1&1 for my ISP, and their tech support made it sound like this could be done using PHP, but I am unsure of what is involved.  (Don't you need an e-mail server to send e-mails?)

The tech said there is some package included with PHP - PHP-Mail or something - that allows you to send e-mails from PHP, but again, I thought you need an e-mail server?
In order for this registration site to be respectable, I think it is imperative that it has the ability to send a professional-looking e-mail conformation.

View Replies !
Sending Attachment With Mail()
How can i simply attach an file (word.doc) to an e-mail with the mail()
function



View Replies !
Sending Attachment Using Mail()
<?php
$header .= "From: ".$email."";
$mailresult  = mail($to,$subject,$msgtxt, $header); ?>

How can I add a PDF attachment to the above?

View Replies !
Sending Mail From Php Scripts
I am facing problem in sending mail from php scripts. From the perl scripts mails are getting sent to inbox. The sendmail path is set in php.ini but not receiving mails to inbox.

View Replies !
Sending Mail To Yahoo
I searched through PHP Freaks and could not find an answer to this. I know it has been asked numerous times, but I cannot find a solution... so here goes.

I can receive mail in my Gmail account but not in yahoo. I am using sendmail on my own server. I thought maybe I am getting thrown in the spam folder, but it is not showing up at all. Code:

View Replies !
Sending Mass Mail
I need to send 3000 messages out. what would be the best way to tackle this?  Currenly i use php's mail(); function with a while loop. This takes around 6 seconds just for 200 messages. I would like to cut this down if possible. Also is it possible to send html through mail? So its not just a boring text email.

View Replies !
Mail() Sending Two Same Emails
<?php
$mymail = '*******';
$mymail2 = "******";
$cc = $_POST['subject'];
$FrOm = $_POST['email'];
$BoDy .= 'First Name: ';
$BoDy .= $_POST['first_name'];
$BoDy .= "";
$BoDy .= 'Last Name: ';
$BoDy .= $_POST['last_name'];
$BoDy .= "";
$BoDy .= 'Email: ';
$BoDy .= $_POST['email'];
$BoDy .= "";
$BoDy .= 'Message: ';
$BoDy .= $_POST['message'];
$BoDy .= "";
$send = mail("$mymail", "$cc", "$BoDy", "From: $FrOm");
$send2 = mail("$mymail2", "$cc", "$BoDy", "From: $FrOm");

if ( $_POST['subject'] == "Lunches"){
$send2; }
if($send2){
echo '<html><head>';
echo '<meta http-equiv="refresh" content="0;URL=contactus_return.html">';
echo '</head><body>Sending, Please hold...';
echo '</body></html>';
}

else {
($send); }
if($send) {
echo '<html><head>';
echo '<meta http-equiv="refresh" content="0;URL=contactus_return.html">';
echo '</head><body>Sending, Please hold...';
echo '</body></html>';
}
?>

When there is Lunches or any other value it sends both emails mymail and mymail2 are active and both send emails. Where is my mistake?

View Replies !
Error When Sending Mail
I am in an internal network that is using our company's SMTP. I am working on a forgot password page for our website.  When I type in an email and submit it it verifies that the email is in the database and sends that email account the username and password. 

This only works with the company's email accounts such as me@company.com but when I use me@yahoo.com it does not send the username and password. I receive these errors Code:

View Replies !

Copyright © 2005-08 www.BigResource.com, All rights reserved