Send mail----PHP

群晖NAS变身私有Git服务器:DS218+部署与TortoiseGit客户端实战指南 本文详细介绍了如何将群晖NAS(如DS218+)变身为私有Git服务器,并配置TortoiseGit客户端实现高效代码管理。通过硬件检查、系统更新、Git Server套件安装及权限配置等步骤,帮助开发者在局域网内搭建安全、高速的代码托管环境,特别适合小团队协作。 阅读详情

mail

(PHP 4, PHP 5)

mail — Send mail

Report a bug

Description

bool mail ( string $to , string $subject , string $message [, string $additional_headers [, string $additional_parameters ]] )

Sends an email.

Report a bug

Parameters
to

Receiver, or receivers of the mail.

The formatting of this string must comply with » RFC 2822. Some examples are:

  • user@example.com
  • user@example.com, anotheruser@example.com
  • User
  • User , Another User

subject

Subject of the email to be sent.

Caution

Subject must satisfy » RFC 2047.

message

Message to be sent.

Each line should be separated with a LF (/n). Lines should not be larger than 70 characters.

Caution

(Windows only) When PHP is talking to a SMTP server directly, if a full stop is found on the start of a line, it is removed. To counter-act this, replace these occurrences with a double dot.

$text = str_replace("/n.", "/n..", $text);
?>

additional_headers (optional)

String to be inserted at the end of the email header.

This is typically used to add extra headers (From, Cc, and Bcc). Multiple extra headers should be separated with a CRLF (/r/n).

Note:

When sending mail, the mail must contain a From header. This can be set with the additional_headers parameter, or a default can be set in php.ini.

Failing to do this will result in an error message similar to Warning: mail(): "sendmail_from" not set in php.ini or custom "From:" header missing. The From header sets also Return-Path under Windows.

Note:

If messages are not received, try using a LF (/n) only. Some poor quality Unix mail transfer agents replace LF by CRLF automatically (which leads to doubling CR if CRLF is used). This should be a last resort, as it does not comply with » RFC 2822.

additional_parameters (optional)

The additional_parameters parameter can be used to pass additional flags as command line options to the program configured to be used when sending mail, as defined by the sendmail_path configuration setting. For example, this can be used to set the envelope sender address when using sendmail with the -f sendmail option.

The user that the webserver runs as should be added as a trusted user to the sendmail configuration to prevent a 'X-Warning' header from being added to the message when the envelope sender (-f) is set using this method. For sendmail users, this file is /etc/mail/trusted-users.

Report a bug

Return Values

Returns TRUE if the mail was successfully accepted for delivery, FALSE otherwise.

It is important to note that just because the mail was accepted for delivery, it does NOT mean the mail will actually reach the intended destination.

Report a bug

Changelog

Version
Description

4.3.0 (Windows only)
All custom headers (like From, Cc, Bcc and Date) are supported, and are not case-sensitive. (As custom headers are not interpreted by the MTA in the first place, but are parsed by PHP, PHP < 4.3 only supported the Cc header element and was case-sensitive).

4.2.3
The additional_parameters parameter is disabled in safe_mode and the mail() function will expose a warning message and returnFALSE when used.

4.0.5
The additional_parameters parameter was added.

Report a bug

Examples

Example #1 Sending mail.

Using mail() to send a simple email:

// The message
$message = "Line 1/nLine 2/nLine 3";
// In case any of our lines are larger than 70 characters, we should use wordwrap()
$message = wordwrap($message, 70);
// Send
mail('caffeinated@example.com', 'My Subject', $message);
?>

Example #2 Sending mail with extra headers.

The addition of basic headers, telling the MUA the From and Reply-To addresses:

$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);
?>

Example #3 Sending mail with an additional command line parameter.

The additional_parameters parameter can be used to pass an additional parameter to the program configured to use when sending mail using thesendmail_path.

mail('nobody@example.com', 'the subject', 'the message', null,
'-fwebmaster@example.com');
?>

Example #4 Sending HTML email

It is also possible to send HTML email with mail().

// multiple recipients
$to  = 'aidan@example.com' . ', '; // note the comma
$to .= 'wez@example.com';
// subject
$subject = 'Birthday Reminders for August';
// message
$message = '


  💬 ชาวเน็ตแห่แชร์: superxgl/article/details/ - Kapook Update 2025


 

Here are the birthdays upcoming in August!


 









   
     
PersonDayMonthYear
       
     
Joe3rdAugust1970
       
     
Sally17thAugust1973
     


';
// 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: Mary , Kelly ' . "/r/n";
$headers .= 'From: Birthday Reminder ' . "/r/n";
$headers .= 'Cc: birthdayarchive@example.com' . "/r/n";
$headers .= 'Bcc: birthdaycheck@example.com' . "/r/n";
// Mail it
mail($to, $subject, $message, $headers);
?>

Note:

If intending to send HTML or otherwise Complex mails, it is recommended to use the PEAR package » PEAR::Mail_Mime.

Report a bug

Notes

Note:

The Windows implementation of mail() differs in many ways from the Unix implementation. First, it doesn't use a local binary for composing messages but only operates on direct sockets which means a MTA is needed listening on a network socket (which can either on the localhost or a remote machine).

Second, the custom headers like From:, Cc:, Bcc: and Date: are not interpreted by the MTA in the first place, but are parsed by PHP.

As such, the to parameter should not be an address in the form of "Something ". The mail command may not parse this properly while talking with the MTA.

Note:

It is worth noting that the mail() function is not suitable for larger volumes of email in a loop. This function opens and closes an SMTP socket for each email, which is not very efficient.

For the sending of large amounts of email, see the » PEAR::Mail, and » PEAR::Mail_Queue packages.

Note:

The following RFCs may be useful: » RFC 1896, » RFC 2045, » RFC 2046, » RFC 2047, » RFC 2048, » RFC 2049, and » RFC 2822.

Report a bug

See Also

Mailparse><ezmlm_hash


Last updated: Fri, 18 Feb 2011

add a note add a noteUser Contributed Notes mail

dave dot kelly at dawkco dot com 06-Feb-2011 11:43

On Windows, with the following entries in php.ini, the script below that works fine.
[mail function]
; For Win32 only.
SMTP = "my.mailserver.dom"
smtp_port = 25
$to = '"To Display Name" ';
$subject = 'PHP mail test';
$message = 'This message was sent via PHP!' . PHP_EOL .
'It should work ... and it does.' . PHP_EOL . PHP_EOL .
'From Display Name' . PHP_EOL;
$headers = 'From: "From Display Name" ' . PHP_EOL .
'Cc: "CC Display Name" ' . PHP_EOL .
'X-Mailer: PHP-' . phpversion() . PHP_EOL;
if (mail($to, $subject, $message, $headers)) {
  echo 'mail() Success!' . "
/n";
}
else {
  echo 'mail() Failure!' . "
/n";
}
?>

Richard Neill 28-Dec-2010 11:54

If mail() encounters an error, it just returns false. To find why, we need to discover where the sendmail command put its error. On Linux, this is usually /var/log/messages.
The mail errors don't end up in /var/log/httpd/errors (because apache doesn't know that /usr/sbin/sendmail returning false is an error), nor in /var/log/mail/  (because the email never got as far as postfix, and no SMTP/delivery error occurred.)

shuitest at gmail dot com 03-Nov-2010 05:50

If you use mutt, do as below,
/usr/bin/mutt -s '$subject' -f /dev/null -e 'set copy=no' -e 'set from = "{$GLOBALS[cfg][email_from]}"' -a '$attach_file_full_path' '{$GLOBALS[cfg][email_to]}' &1;

tschmieder at online dot de 23-Oct-2010 02:32

it seams to be better, to terminate additional headers neither with "/n" nor with "/r/n", but to terminate them with the php constant PHP_EOL.
The benefit is: this works fine as well on a LINUX based Host as on a Windows based host.
As final result there must be produced a mail file fulfilling the RFC2822 ff.
On a Linux system therfore in headers linebreaks like "/n" are required due to the sendmail script transforming them to "/r/n" (means CRLF).
On a Windows system the mail function speaks directly to the SMTP Server (port 25) and therefore in headers linebreaks like "/r/n" (means CRLF) are required at once. Nobody else would care for transformation.
If you use the constant PHP_EOL instead of own character sequences, the php installation will take care for the required line ending as well on Linux as on Windows installations.

Michiel Uitdehaag 30-Sep-2010 08:07

We had a LAMP setting with postfix as mail system. Our additional headers were not interpreted correctly by a receiving mailserver (Exchange/ENOD32) and a newline was inserted after the first additional header.
It turns out that a internet/dos style newline (/r/n) in the headers were converted to /r/r/n (ie: something mindlessly replaced all /n with /r/n without seeing if /n was already preceded by /r)
I don't know if this is something in PHP or postfix, but seeing the comments below I suspect it is something of PHP on *NIX in combination with non-sendmail mailers.
So, use your 'local' newline style for additional headers, as opposed to the examples above.
I don't know if this is a bug anywhere. I don't know which element exactly does the unix2dos translation. If it is PHP, it should only replace ([^/r])/n  with /1/r/n

Zane @ MLI 08-Sep-2010 10:17

Italian users cursing against "È" and other uppercase-accented-vowels ("vocali maiuscole accentate"") in subjects! While the lowercase ones ("è", "é" and so on) work as expected, qmail doesn't handle the uppercase ones.
To fix it, the only way I found was this:
function mail_utf8($to, $subject = '(No subject)', $message = '', $header = '') {
$header_ = 'MIME-Version: 1.0' . "/r/n" . 'Content-type: text/plain; charset=UTF-8' . "/r/n";
mail($to, '=?UTF-8?B?'.base64_encode($subject).'?=', $message, $header_ . $header);
}
?>
It should apply to other languages too.

guy dot paddock at redbottledesign dot com 26-Aug-2010 09:19

If you are using SSMTP, pay attention to the "If messages are not received, try using a LF (/n) only" note above about "poor quality MTAs", since it appears that SSMTP currently exhibits this behavior in version 2.62-r7.
This appears to be mentioned in this Debian bug report:
http://preview.tinyurl.com/2fqxswv

phadley at reliableid dot com 12-Aug-2010 01:20

The mail function will stop including headers if you misspell one of them.  It doesn't report an error, it just puts the offending header and all that follow it in the body of the message.  My great transgression was using MIME Version instead of MIME-Version, a lapse which cost me several hours.

Porjo 07-Jul-2010 06:19

Make sure you enclose /r/n in double quotes (not single quotes!) so that PHP can translate that into the correct linefeed code

umangberi at gmail dot com 02-May-2010 08:41

Outlook 2007 seemed to be a little finicky with me to have carriage returns in the headers. So any /r/n resulted in messages that had default apache messages sent over to me.
As soon as I removed /r from all of the headers, the script started working fine. Hope that helped.

matthew dot mckay at uwrf dot edu 17-Feb-2010 09:57

Note: On some windows platforms this is NOT thread safe.
We are having email message bodies being sent out to the wrong headers multiple times, some failing to send, and other bizarre stuff. If you google search for "php mail thread safe" you can find a ton of relevant information.
This is not a bug in php, there have been multiple bugs closed with this issue being dismissed as not an issue with PHP.

rch+php at online dot lt 02-Jan-2010 09:46

RFC-2822 is quite explicit, that "Though some message   systems locally store messages in this format (which eliminates the need for translation between formats) and others use formats that differ from the one specified in this standard, local storage is outside of the scope of this standard."
And it is not just "some", but most Unix mailers choke when you try pipe CRLF instead of Unix line endings to "sendmail" command.  PHP is using line endings as is, so you have better chances for success if you use Unix file format or line endings.

Alex M. 23-Nov-2009 07:49

It is important to filter the form input to prevent header injection. Here is a simple way:
# Anti-header-injection - Use before mail()
# By Victor Benincasa
foreach($_REQUEST as $fields => $value) if(eregi("TO:", $value) || eregi("CC:", $value) || eregi("CCO:", $value) || eregi("Content-Type",$value)) exit("ERROR: Code injection attempt denied! Please don't use the following sequences in your message: 'TO:', 'CC:', 'CCO:' or 'Content-Type'.");
?>
--
Alex M.

Systemx 04-Nov-2009 10:29

Bare LFs in SMTP
Use This
// Fix any bare linefeeds in the message to make it RFC821 Compliant.
$message = preg_replace("#(? // Make sure there are no bare linefeeds in the headers
$headers = preg_replace('#(? ?>

John 20-Oct-2009 06:38

A quick note about the optional flags that can be passed to sendmail. -f will set the From address, -r will override the default Return-path that sendmail generates (typically the From address gets used). If you want your bouncebacks to go to a different address than the from address, try using both flags at once: "-f myfromemail@example.com -r mybounceemail@example.com"

dtbaker.com.au 11-Oct-2009 03:59

An observation about safe_mode and mail()
It looks like multiple /r/n's are replaced by a single /r/n inside the string passed to "additional_headers". I can only re-produce this on a box running with safe_mode enabled.
If (for some reason) your script crafts the entire email message in the headers, this will most likely produce a blank email on safe_mode boxes (like this script I've been trying to get working).

Maven1 at example dot com 09-Oct-2009 08:28

I was having trouble with the newline and carriage return characters when using the mail function in a custom script within Joomla since the stupid input validations kept stripping them (changed "/r/n" to "rn").
To get around this, I used chr(13) and chr(10) to insert them.
$headers .= 'To: Mary , Kelly ' . chr(13) . chr(10);
$headers .= 'From: Birthday Reminder ' . chr(13) . chr(10);
?>
Hope that helps someone.

Clayton Ginsburg 18-Aug-2009 07:38

I recently had an issue where the mail() function would work fine from the php cli but not from apache.
I eventually traced this down to the fact that I was using apparmor
Specifically, I configured apparmor to deny the apache user the ability to use /bin/dash
After changing apparmor to /bin/dash rix
and reloading the apparmor profile, mail worked
In other words, mail requires the account/program executing the script to be able to use /bin/dash
I hope this helps someone

Anonymous 17-Aug-2009 06:29

UTF-8 and QMail
This function should work for all of you, who want to switch to UTF-8 email - especially if using Qmail as Mailserver.
QMail seems to have problems with the "/r/n" in the header section. I found it helpful to replace them with "/n".
function mail_utf8($to, $subject = '(No subject)', $message = '', $from) {
$header = 'MIME-Version: 1.0' . "/n" . 'Content-type: text/plain; charset=UTF-8'
. "/n" . 'From: Yourname <' . $from . ">/n";
mail($to, '=?UTF-8?B?'.base64_encode($subject).'?=', $message, $header);
}
?>

Tomer 03-Aug-2009 06:31

I was trying to create a script that would send large forms without having to get/post each value first and came up with this... should help someone to save valuable time.
$emailSentTo = "";
$subjectOfEmail = "";
//========= no need to edit bellow
// Set HTML Mail Header
$headers  = 'MIME-Version: 1.0' . "/r/n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "/r/n";
// The Message
$message = $GLOBALS["HTTP_SERVER_VARS"]["REQUEST_URI"];
//Cleaning Message
$message = str_replace('?','


',str_replace('/','File used for submittimg this form: ',str_replace('=',': ',str_replace('&','
',$message))));
// Sending
mail($emailSentTo, $subjectOfEmail, $message, $headers);
//Thanking
echo "
";
?>

Edward 01-Aug-2009 09:08

Currently my hosting service is on Godaddy. When attempting to use the mail function without the fifth parameter containing "-f", my message headers would not work.
Whenever your message headers do not work, simply try using the fifth parameter:
mail($to, $subject, $message, $headers, "-femail.address@example.com");
?>

php at caves dot org dot uk 28-Jul-2009 02:32

Setting an envelope-sender address avoids mail bounces annoying your system administrator.
If your mail cannot be delivered, it will be rejected to the address specified as the "SMTP-envelope-from" (or the "envelope sender" or "return path", depending on the terminology you like to use )
If you do not explicitly set an envelope-from address then PHP will default to the php.ini setting which - if you have not set this yourself - could be nobody@[your-ISP-domain] or anonymous@[your-ISP-domain], for example.
To avoid bothering the person at that address - or indeed, if you are wondering why you are not receiving mail rejections yourself - you should use the "-f" option in the <$additional_parameters> argument to set a valid address.
(and, by the way: If you do this, but you do not set a From: address in the <$additional_headers> argument then PHP will set a default From: address of "From: Nobody ". ).

php at caves dot org dot uk 28-Jul-2009 02:12

Problem: mail disappearing; not being sent
There are many reasons why your mail might fail to be sent, but one particularly obscure reason is as follows.
You must take extra care if the machine that is sending the mail also operates mail forwarding for your domain and you are sending mail to a user at that domain.  In this situation, it is common for the MTA to avoid doing a "proper" MX look-up because it "knows" that there is a local list of mail-forwarding rules. This saves resources, and normally shouldnt be a problem, of course.
HOWEVER, if you deliberately alter your MX record to point to a mail server hosted elsewhere and, e.g. update your mail forwarding rules at that location,  AND the server that sends your PHP-generated mail "decides" that it will save resources by not checking the MX record THEN it will use your old set of forwarding rules because it is ignoring your MX record.
If an appropriate forwarding rule does not exist locally, then the mail may be dropped without generating any error (i.e. no "bounce" message).
The symptom of the problem is that mail to certain users at your domain will be wrongly delivered or not delivered at all.
An obscure problem, perhaps, but one that I have experienced, and which took a long time to solve!

php at richardneill dot org 07-Jul-2009 04:29

Linux users have an easy way to send attachments using the mutt program. See:  http://www.shelldorado.com/articles/mailattachments.html
For example:
$cmd = "echo '$BODY_TEXT' | mutt -s '$SUBJECT' -a '$filename_1' -a '$filename_2' '$email'";
exec ($cmd);

Anonymous 03-Jul-2009 04:22

I was (finally) able to get multipart HTML mail working.
The 'boundary' must be defined with double quotes, not apostrophes.
$headers .= "Content-Type: multipart/alternative;boundary=/"$boundary/";/n/n";

d dot r at usask dot ca 05-Jun-2009 04:44

The example indicates /r/n at the end of each line in the headers but this was causing me problems as emails showed some of the headers as part of the body.  I simply used only /n as in some of the other examples and the problem went away.

marcel dot portela at gmail dot com 22-May-2009 05:32

To define a mail priority you have to put this lines in the headers:
        $headers = "MIME-Version: 1.0/n" ;
$headers .= "Content-Type: text/html; charset=/"iso-8859-1/"/n";
$headers .= "X-Priority: 1 (Higuest)/n";
$headers .= "X-MSMail-Priority: High/n";
$headers .= "Importance: High/n";
$status   = mail($to, $subject, $message,$headers);
?>
Here i've added many headers information including the Priority...

aldertb at XS4ALL dot nl 23-Mar-2009 09:30

I experienced problems with removed euro signs and some other accented letters. The text came from a DB but contained the euro sign etcetera inside the mail function, just as when you would define it as a string. (Did die($newsletter['message']). It was lost in the mail I received though! When I defined the message as a string inside the sending function (overriding text from DB), including euro sign as a single character, I DID receive the email including euro sign!
This was experienced on 2 different email accounts. With one I received no text after the euro sign.
But only when text came from mySQL DB from a longtext Latin1-field...
I installed the pear mail class and this solved the strange problem and could just send text from the DB...

andrei_a at btconnect dot com 18-Mar-2009 02:57

On some shared hosts like 1and1.co.uk, when using mail() function with '-f' flag, email may be quietly 'dropped' and not sent at all without any error message returned if '-f' option is used without email address valid on this host.
For example, if used as '-ftest@test.com' the email will be dropped on 1and1 provider. But if you have a 'real' mailbox on the server, for example 'black-hole@mydomain.com', and you use '-fblack-hole@mydomain.com' then the email will be sent. At the same time envelope's 'Return-Path' will be set properly to 'black-hole@mydomain.com' instead of 'test@shared.host.name'.

alex_ramos at sourceforge dot net 27-Feb-2009 03:37

Beware if you're trying to use "-f" or "-r" with the 5th parameter of the PHP mail() function, and you're relying on a plain vanilla install of sendmail on Linux, it won't work. You'll have to either change the sendmail config and add your script's userid to "trusted-users" (easier said than done... good luck with that!), or, remove sendmail and install postfix (much easier).

thelegs at gmail dot com 25-Feb-2009 03:06

As some SMTP servers (for example Argosoft Mail Server for Windows) may lead into troubles when sending a mail to "Full Name " instead of simply "user@domain.tld", the following may be a solution:
$Result = trim(preg_replace("/([/w/s]+)<([/S@._-]*)>/", " $2", $Input));
?>
I'm not a PCRE guru, but this seems to work pretty good with any number of e-mail addresses, even when the $Input contains "mixed" address definitions (ie. some with Full Name and some without).
Examples:
Input: "User 1 , User 2 , user3@foo.tld"
Result: "user1@foo.tld, user2@foo.tld, user3@foo.tld";
Input: "user1@foo.tld, user2@foo.tld"
Result: "user1@foo.tld, user2@foo.tld"
The use of trim is optional, just to keep a nice space after the comma separator. If you don't mind about showing nice recipient lists to the MTA, I think this would work as well:
$Result = preg_replace("/([/w/s]+)<([/S@._-]*)>/", "$2", $Input);
?>
Anyway I hope that someone could improve these expressions. :)

Erich at gasboysnospam dot net 19-Feb-2009 03:43

if your mail is failing (returns false) be aware that many servers are configured to kill mail going out with a bcc or cc header.
The ideal workaround is to use the smtp functions which servers allow because of its better audit trail. Alternatively call the mail function several times.
I've just spent about four hours trying to work out what I was doing wrong!!

deepakkallungal at gmail dot com 23-Jan-2009 07:34

For solving japanese subject in php mail.
we had a problem was when we give shift-jis encoded test for subject in mail, the mail received  displayed as "BQ Tech/ Ý t H [" in subject where the content in the mail was showing correctly.
we solved it by using this code.
$subject =iconv( "Shift_JIS","EUC-JP", "BQ Tech申込みフォーム");
we can convert like this for japanese encoding not working correctly for japanese text.

orjtor 19-Jan-2009 08:17

This is my solution of problems with Windows Mail on Vista. I got some of the headers in the mail body as plain text. When I removed '/r' and left just '/n' at the end of the two last lines of header it worked. This error didn't show up in my yahoo mail.
    $body = "/n";
$body .= "/n";
$body = $message;
$body .= "/n";
$body .= "/n";
$headers  = "From: My site /r/n";
$headers .= "Reply-To: info@my_site.com/r/n";
$headers .= "Return-Path: info@my_site.com/r/n";
$headers .= "X-Mailer: Drupal/n";
$headers .= 'MIME-Version: 1.0' . "/n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "/r/n";
    return mail($recipient, $subject, $message, $headers);
?>

tyagi dot akhil at gmail dot com 04-Jan-2009 02:29

To send XML content in mail use this
Content-Type: text/xml
instead of Content-Type: text/html

Tim Johannessen 15-Dec-2008 02:59

I tried the example provided by [hn at nesland dot net] but it didn't quite work, as the error:
Fatal error: Cannot redeclare mail()
was encountered.
Also, the runkit_function_rename() caused apache to exit with Segmentation fault (11)
This works like a charm:
@dl("runkit.so");
@runkit_function_copy("mail", "__org_mail");
@runkit_function_remove("mail");
@runkit_function_copy("__new_mail", "mail");
@runkit_function_remove("__new_mail");
function __new_mail($to, $subject, $message, $additional_headers = null, $additional_parameters = null) {
/* do your own mail function checks here */
return __org_mail($to, $subject, $message, $additional_headers, $additional_parameters);
}
?>
Atleast it worked for me, stripping newlines from $to, $subject, removing unwanted headers from $additional_headers and adding new headers to $additional_headers for debugging - this way I'll be able to track the origin of the mail using the headers.
You'll need enable_dl = On in your php.ini and also runkit.internal_override = "1"
I wanted to remove the execution of __org_mail(), so I tried to add this to disable_functions in php.ini but that didn't seem to work, so be aware that the original function can still be executed, and found by using get_defined_functions().

php at ontheroad dot net dot nz 04-Nov-2008 05:00

Another possible cause for the "501 5.5.4 Invalid Address" type errors when sending mail from Windows is specifying BCC or CC parameters with no value.

molotster on google mail com 13-Oct-2008 08:03

Note, that single line should not contain more than 78 character, but is not allowed to contain more than 998 characters.
The possible consequences are:
Over 78 - clients are allowed to display the message in a "harder to read" way.
Over 998 - clients and servers are allowed to drop the message or cause any buffer-limit error.
See:
http://www.faqs.org/rfcs/rfc2822 part 2.1.1.

duminda 17-Sep-2008 08:44

$title=$_POST['title'];
$name=$_POST['name'];
$email=$_POST['email'];
$telephone=$_POST['telephone'];
$fax=$_POST['fax'];
$address=$_POST['address'];
$country=$_POST['country'];
$comment=$_POST['comment'];
# -=-=-=- MIME BOUNDARY
$mime_boundary = "----MSA Shipping----".md5(time());
# -=-=-=- MAIL HEADERS
$to = "dlwijerathna@gmail.com";
//$to = "duminda@dumidesign.com";
//$to = "info@msashipping.com";
$subject = "Information Request from MSA Shipping - Contact Form";
$headers = "From: MSA SHIPPING /n";
$headers .= "Reply-To: MSA Shipping /n";
$headers .= "BCC: dumidesign@gmail.com";
$headers .= "MIME-Version: 1.0/n";
$headers .= "Content-Type: multipart/alternative; boundary=/"$mime_boundary/"/n";
$message .= "--$mime_boundary/n";
$message .= "Content-Type: text/html; charset=UTF-8/n";
$message .= "Content-Transfer-Encoding: 8bit/n/n";
$message .= "/n";
$message .= "/n";
$message .= "

";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
";
$message .="
 
 Title:$title
 Name:$name
 E-mail:$email
 Telephone:$telephone
 Fax:$fax
 Country:$country
 Comments:$comment
";
$message .= "/n";
$message .= "/n";
# -=-=-=- FINAL BOUNDARY
$message .= "--$mime_boundary--/n/n";
# -=-=-=- SEND MAIL
$mail_sent = @mail( $to, $subject, $message, $headers );
//echo $mail_sent ? "Mail sent" : "Mail failed";
if($mail_sent)
{
header('Location:contactus.php?msg=yes');
}
else
{
header('Location:contactus.php?msg=no');
}
?>

webmaster at plumage dot nl 01-Sep-2008 09:53

The work-around for a large quantity of recipients is putting the adresses in the header-section as Bcc adresses.
In this way the mail()-function opens and closes the SMTP connection only once:
$count_recip= count($recip);//where $recip represents an array of mail-adresses, from MySql-query or otherwise
$count='0';
$headers.="Bcc: ";
while($count < $count_recip){
$headers.=$recip[$count].", ";
$count ++;
}
$headers.="admin@mailinglist.com/r/n";
?>

bob 15-Jul-2008 08:51

If the Cc or Bcc lines appear in the message body, make sure you're separating header lines with a new line (/n) rather than a carriage return-new line (/r/n). That should come at the very end of the headers.

akam 28-May-2008 01:55

There differenece in body, headers of email (with attachment, without attachment), see this complete example below:
work great for me (LINUX , WIN) and (Yahoo Mail, Hotmail, Gmail, ...)
$to      = $_POST['to'];
$email   = $_POST['email'];
$name    = $_POST['name'];
$subject = $_POST['subject'];
$comment = $_POST['message'];
$To          = strip_tags($to);
$TextMessage =strip_tags(nl2br($comment),"
");
$HTMLMessage =nl2br($comment);
$FromName    =strip_tags($name);
$FromEmail   =strip_tags($email);
$Subject     =strip_tags($subject);
$boundary1   =rand(0,9)."-"
.rand(10000000000,9999999999)."-"
.rand(10000000000,9999999999)."=:"
.rand(10000,99999);
$boundary2   =rand(0,9)."-".rand(10000000000,9999999999)."-"
.rand(10000000000,9999999999)."=:"
.rand(10000,99999);
for($i=0; $i < count($_FILES['youfile']['name']); $i++){
if(is_uploaded_file($_FILES['fileatt']['tmp_name'][$i]) &&
   !empty($_FILES['fileatt']['size'][$i]) &&
   !empty($_FILES['fileatt']['name'][$i])){
$attach      ='yes';
$end         ='';
$handle      =fopen($_FILES['fileatt']['tmp_name'][$i], 'rb');
$f_contents  =fread($handle, $_FILES['fileatt']['size'][$i]);
$attachment[]=chunk_split(base64_encode($f_contents));
fclose($handle);
$ftype[]       =$_FILES['fileatt']['type'][$i];
$fname[]       =$_FILES['fileatt']['name'][$i];
}
}
/***************************************************************
Creating Email: Headers, BODY
1- HTML Email WIthout Attachment!! <<-------- H T M L ---------
***************************************************************/
#---->Headers Part
$Headers     =<<
From: $FromName <$FromEmail>
Reply-To: $FromEmail
MIME-Version: 1.0
Content-Type: multipart/alternative;
    boundary="$boundary1"
AKAM;
#---->BODY Part
$Body        =<<
MIME-Version: 1.0
Content-Type: multipart/alternative;
    boundary="$boundary1"
This is a multi-part message in MIME format.
--$boundary1
Content-Type: text/plain;
    charset="windows-1256"
Content-Transfer-Encoding: quoted-printable
$TextMessage
--$boundary1
Content-Type: text/html;
    charset="windows-1256"
Content-Transfer-Encoding: quoted-printable
$HTMLMessage
--$boundary1--
AKAM;
/***************************************************************
2- HTML Email WIth Multiple Attachment <<----- Attachment ------
***************************************************************/
if($attach=='yes') {
$attachments='';
$Headers     =<<
From: $FromName <$FromEmail>
Reply-To: $FromEmail
MIME-Version: 1.0
Content-Type: multipart/mixed;
    boundary="$boundary1"
AKAM;
for($j=0;$j $attachments.=<<
--$boundary1
Content-Type: $ftype[$j];
    name="$fname[$i]"
Content-Transfer-Encoding: base64
Content-Disposition: attachment;
    filename="$fname[$j]"
$attachment[$j]
ATTA;
}
$Body        =<<
This is a multi-part message in MIME format.
--$boundary1
Content-Type: multipart/alternative;
    boundary="$boundary2"
--$boundary2
Content-Type: text/plain;
    charset="windows-1256"
Content-Transfer-Encoding: quoted-printable
$TextMessage
--$boundary2
Content-Type: text/html;
    charset="windows-1256"
Content-Transfer-Encoding: quoted-printable
$HTMLMessage
--$boundary2--
$attachments
--$boundary1--
AKAM;
}
/***************************************************************
Sending Email
***************************************************************/
$ok=mail($To, $Subject, $Body, $Headers);
echo $ok?"

Mail Sent

":"

Mail not SEND

";
?>

richard at richard-sumilang dot com 22-Mar-2008 08:12

If you are using the sendmail app from an exim package or something you don't really need to change the normal parameters PHP gives it (-t -i) as other posts described.
I just added "-f myemail@foo.com" and it worked.
One thing that got me stuck for a few hours was trying to figure out why the return-path was set as the user (user running php) and not what I was setting it with the -f option then I later found at that in order to forcefully set the return-path the user account running the command must be in exim's trusted users configuration! It helps to add trusted_groups as well then everything works fine :)
- Richard Sumilang

jano ATSOMERANDOMTEXTjanogarcia es 28-Jan-2008 10:31

This is a simple and quick (dirty?) fix for encoding long UTF-8 email subjects.
    $subject= mb_encode_mimeheader($subject,"UTF-8", "B", "/n");
?>
Changing the $transfer_encoding parameter* from B (Base64) to Q (Quoted-Printable) seems to work too.
*See the mb_encode_mimeheader documentation here http://php.net/manual/en/function.mb-encode-mimeheader.php
This one is based on the previously posted solution by J.Halmu http://php.net/manual/en/function.mail.php#75886 , added the two last parameters to prevent long subjects from breaking the email. It worked flawlessly on a RHEL environmet. No further tests, sorry.

Tomix 17-Jan-2008 03:53

send e-mail in utf-8
there is already a solution from omgs. but with a longer subject line there could be problem (splitting the subject line in a encoded character).
here my solution:
// hmm no better solution?
function imap8bit(&$item, $key) {
$item = imap_8bit($item);
}
function email($e_mail, $subject, $message, $headers)
{
// add headers for utf-8 message
$headers .= "/r/n";
$headers .= "MIME-Version: 1.0/r/n";
$headers .= "Content-type: text/plain; charset=utf-8/r/n";
$headers .= "Content-Transfer-Encoding: quoted-printable/r/n";
// encode subject
  //=?UTF-8?Q?encoded_text?=
  // work a round: for subject with wordwrap
  // not fixed, no possibility to have one in a single char
$subject = wordwrap($subject, 25, "/n", FALSE);
$subject = explode("/n", $subject);
array_walk($subject, imap8bit);
$subject = implode("/r/n ", $subject);
$subject = "=?UTF-8?Q?".$subject."?=";
// encode e-mail message
$message = imap_8bit($message);
  return(mail("$e_mail", "$subject", "$message", "$headers"));
}
?>

mortoray at ecircle-ag dot com 10-Jan-2008 03:35

Apparently if using the mbstring library, and using overriden functions, the "mail" command appears to use "Content-Transfer-Encoding: BASE64" by default.  Which if you combine it with PEAR Mail_Mime you'll get mails that, although they appear RFC compliant, not mailer can read correctly.
To fix this it appears you should add a fixed header in the mail command (this one assumes the pear mime module is 7bit clean, perhaps 8bit would also be fine)

d 25-Dec-2007 09:39

When sending html formatted mails to gmail accounts you might notice that the html is shown in plain text. This happens when you send from an unix system and gmail treats the "/r/n" line ends in a wrong way. Use "/n" instead at it will be fine.
Content-Type: text/html; charset=iso-8859-1/n
instead of
Content-Type: text/html; charset=iso-8859-1/r/n

hn at nesland dot net 03-Nov-2007 12:37

Tired of idiots and imbeciles who creates unsecure php-code and lets spammers abuse mail()? Try this dirty trick:
With auto_prepend, prepend this file:
// You need to install pecl-module, runkit.
dl("runkit.so");
// We could rename the function, but that currently makes my apache segfault, but this works :-P
runkit_function_copy ( "mail","intmail" );
runkit_function_remove( "mail" );
function mail( $to, $subject, $message, $additional_headers = null, $additional_parameters = null ) {
$___domain = $_SERVER['SERVER_NAME'];
$fp = fopen("/tmp/my_super_mail_logg", "a");
fwrite( $fp, date("d.m.y H:i:s") . " " . $___domain . ": $to / $subject/n");
fclose( $fp );
    return intmail( $to, $subject, $message, $additional_headers, $additional_parameters );
}
?>
You probably shouldn't log to /tmp, or any other place as the webserver-user, see syslog-functions ;)
And of course you can manipulate the different parameters, like adding custom headers to each email (For instance; "X-From-Web: {$_SERVER['SERVER_NAME']}")..

phpcoder at cyberpimp dot ig3 dot net 27-Sep-2007 03:51

In addition to the $to parameter restrictions on Windows (ie. address can not be in "name " format), the same restrictions apply to the parsed Cc and Bcc headers of the $additional_headers parameter.
However, you can include a To header in $additional_parameters which lists the addresses in any RFC-2822 format.  (For display purposes only.  You still need to list the bare addresses in the $to parameter.)

Gianluigi_Zanettini-MegaLab.it 10-Aug-2007 06:57

Please note that using an address in this format "Zane, CEO - MegaLab.it" (" are needed due to comma) works as expected under *nix, but WON'T WORK under Windows.
This is an example
mail("/"Zane, CEO - MegaLab.it/" ", "prova da test_zane", "dai funziona...");
?>
It works under *unix, but it doensn't under Win: different error are reported:
Warning: mail() [function.mail]: SMTP server response: 553 5.0.0 <"Zane>... Unbalanced '"'
Warning: mail() [function.mail]: SMTP server response: 501 5.5.4 Invalid Address

J.Halmu 20-Jun-2007 11:10

I use text/plain charaset=iso-8859-1 and get bad headers complain from amavis. This helped me:
[code]
$subject = mb_encode_mimeheader('ääööö test test öäöäöä','UTF-8');
[/code]
php-version 5.2.2

Alex Jaspersen 31-May-2007 06:03

For qmail users, I have written a function that talks directly to qmail-queue, rather than going through the sendmail wrapper used by mail(). Thus it allows more direct control over the message (for example, you can adapt the function to display "undisclosed recipients" in to the To: header). It also performs careful validation of the e-mail addresses passed to it, making it more difficult for spammers to exploit your scripts.
Please note that this function differs from the mail() function in that the from address must be passed as a _separate_ argument. It is automatically put into the message headers and _does not_ need to be included in $additional_headers.
$to can either be an array or a single address contained in a string.
$message should not contain any carriage return characters - only linefeeds.
No validation is performed on $additional_headers. This is mostly unnecessary because qmail will ignore any additional To: headers injected by a malicious user. However if you have some strange mail setup it might be a problem.
The function returns false if the message fails validation or is rejected by qmail-queue, and returns true on success.
function qmail_queue($to, $from, $subject, $message, $additional_headers = "")
{
// qmail-queue location and hostname used for Message-Id
$cmd = "/var/qmail/bin/qmail-queue";
$hostname = trim(file_get_contents("/var/qmail/control/me"));
// convert $to into an array
if(is_scalar($to))
$to = array($to);
// BEGIN VALIDATION
    // e-mail address validation
$e = "/^[-+//.0-9=a-z_]+@([-0-9a-z]+//.)+([0-9a-z]){2,4}$/i";
// from address
if(!preg_match($e, $from)) return false;
// to address(es)
foreach($to as $rcpt)
    {
        if(!preg_match($e, $rcpt)) return false;
    }
// subject validation (only printable 7-bit ascii characters allowed)
    // needs to be adapted to allow for foreign languages with 8-bit characters
if(!preg_match("/^[//040-//176]+$/", $subject)) return false;
// END VALIDATION
    // open qmail-queue process
$dspec = array
    (
        array("pipe", "r"), // message descriptor
array("pipe", "r") // envelope descriptor
);
$pipes = array();
$proc = proc_open($cmd, $dspec, $pipes);
    if(!is_resource($proc)) return false;
// write additional headers
if(!empty($additional_headers))
    {
fwrite($pipes[0], $additional_headers . "/n");
    }
// write to/from/subject/date/message-ID headers
fwrite($pipes[0], "To: " . $to[0]); // first recipient
for($i = 1; $i < sizeof($to); $i++) // additional recipients
{
fwrite($pipes[0], ", " . $to[$i]);
    }
fwrite($pipes[0], "/nSubject: " . $subject . "/n");
fwrite($pipes[0], "From: " . $from . "/n");
fwrite($pipes[0], "Message-Id: <" . md5(uniqid(microtime())) . "@" . $hostname . ">/n");
fwrite($pipes[0], "Date: " . date("r") . "/n/n");
fwrite($pipes[0], $message);
fwrite($pipes[0], "/n");
fclose($pipes[0]);
// write from address and recipients
fwrite($pipes[1], "F" . $from . "/0");
    foreach($to as $rcpt)
    {
fwrite($pipes[1], "T" . $rcpt . "/0");
    }
fwrite($pipes[1], "/0");
fclose($pipes[1]);
// return true on success.
return proc_close($proc) == 0;
}
?>

Geoff in Montreal 01-May-2007 10:07

Here is a PHP Mail Multipart/Alternative (Plain Text and HTML) code for *nix servers (Unix Like Servers)... if you are hosted on a windows server, simply replace all "/n" or "/n/n" in the below code to "/r/n" or "/r/n/r/n" respectively.
This code is for anyone who has already written an HTML page for their PHP mail... there are several PHP > HTML free translators on the internet.  You may use one of them to translate your HTML code to PHP to insert into the following code.  All there needs to change is to place a backslash before any quotations (EX: ... confirm that /"Our Company/" has ...), and to end each line with a newline character (EX: /n )...
This code method has been successfully tested with Apple Mail, Microsoft Outlook, G-Mail, and Yahoo Mail.  I hope this helps out anyone that is writing a multipart/alternative PHP mailer script.
# -=-=-=- PHP FORM VARIABLES (add as many as you would like)
$name = $_POST["name"];
$email = $_POST["email"];
$invoicetotal = $_POST["invoicetotal"];
# -=-=-=- MIME BOUNDARY
$mime_boundary = "----Your_Company_Name----".md5(time());
# -=-=-=- MAIL HEADERS
$to = "$email";
$subject = "This text will display in the email's Subject Field";
$headers = "From: Our Company /n";
$headers .= "Reply-To: Our Company /n";
$headers .= "MIME-Version: 1.0/n";
$headers .= "Content-Type: multipart/alternative; boundary=/"$mime_boundary/"/n";
# -=-=-=- TEXT EMAIL PART
$message = "--$mime_boundary/n";
$message .= "Content-Type: text/plain; charset=UTF-8/n";
$message .= "Content-Transfer-Encoding: 8bit/n/n";
$message .= "$name:/n/n";
$message .= "This email is to confirm that /"Our Company/" has received your order./n";
$message .= "Please send payment of $invoicetotal to our company address./n/n";
$message .= "Thank You./n/n";
# -=-=-=- HTML EMAIL PART
$message .= "--$mime_boundary/n";
$message .= "Content-Type: text/html; charset=UTF-8/n";
$message .= "Content-Transfer-Encoding: 8bit/n/n";
$message .= "/n";
$message .= "/n";
$message .= "$name:
/n";
$message .= "
/n";
$message .= "This email is to confirm that /"Our Company/" has received your order.
/n";
$message .= "Please send payment of $invoicetotal to our company address.
/n/n";
$message .= "
/n";
$message .= "Thank You.
/n/n";
$message .= "/n";
$message .= "/n";
# -=-=-=- FINAL BOUNDARY
$message .= "--$mime_boundary--/n/n";
# -=-=-=- SEND MAIL
$mail_sent = @mail( $to, $subject, $message, $headers );
echo $mail_sent ? "Mail sent" : "Mail failed";
?>

Josh 09-Mar-2007 06:05

While trying to send attachments I ran into the problem of having the beginning part of my encoded data being cut off.
A fact that I didn't see mentioned anywhere explicitly (except maybe in the RFC, which admittedly I didn't read fully) was that two newlines are required before you start the encoded data:
Content-Transfer-Encoding: base64/n
Content-Type: application/zip; name="test_file.zip"/n
/n  //<--- if this newline isn't here your data will get cut off
DATA GOES HERE

hans111 at yahoo dot com 01-Mar-2007 04:54

I had a lot of trouble trying to send multipart messages to gmail accounts until I discovered gmail does not like carriage returns, even under unix I have to use only new lines (/n) and forget about the (/r) . Other email clients such as eudora, outlook, hotmail or yahoo seem not to have issues about the "missing" /r . Hope it helps.

bigtree at dontspam dot 29a dot nl 28-Feb-2007 12:46

Since lines in $additional_headers must be separated by /n on Unix and /r/n on Windows, it might be useful to use the PHP_EOL constant which contains the correct value on either platform.
Note that this variable was introduced in PHP 5.0.2 so to write portable code that also works in PHP versions before that, use the following code to make sure it exists:
if (!defined('PHP_EOL')) define ('PHP_EOL', strtoupper(substr(PHP_OS,0,3) == 'WIN') ? "/r/n" : "/n");
?>

admin at chatfamy dot com 30-Jan-2007 08:37

One thing it can be difficult to control with this function is the envelope "from" address. The envelope "from" address is distinct from the address that appears in the "From:" header of the email. It is what sendmail uses in its "MAIL FROM/RCPT TO" exchange with the receiving mail server. It also typically shows up in the "Return-Path:" header, but this need not be the case. The whole reason it is called an "envelope" address is that appears _outside_ of the message header and body, in the raw SMTP exchange between mail servers.
The default envelope "from" address on unix depends on what sendmail implementation you are using. But typically it will be set to the username of the running process followed by "@" and the hostname of the machine. In a typical configuration this will look something like apache@box17.isp.net.
If your emails are being rejected by receiving mail servers, or if you need to change what address bounce emails are sent to, you can change the envelope "from" address to solve your problems.
To change the envelope "from" address on unix, you specify an "-r" option to your sendmail binary. You can do this globally in php.ini by adding the "-r" option to the "sendmail_path" command line. You can also do it programmatically from within PHP by passing "-r address@domain.com" as the "additional_parameters" argument to the mail() function (the 5th argument). If you specify an address both places, the sendmail binary will be called with two "-r" options, which may have undefined behavior depending on your sendmail implementation. With the Postfix MTA, later "-r" options silently override earlier options, making it possible to set a global default and still get sensible behavior when you try to override it locally.
On Windows, the the situation is a lot simpler. The envelope "from" address there is just the value of "sendmail_from" in the php.ini file. You can override it locally with ini_set().

tdaniel at univ dot haifa dot ac dot il 26-Oct-2006 11:17

I had trouble getting multiple emails sent for Outlook accounts (a single PHP page performed 2 mail() calls).
The PHP mail() function works correctly, but the same mails that were recieved on a private POP3 server were randomly missing by our intranet Outlook exchange server.
If you have the same problem, try to verify that the "Message-ID: " is unique at the $headers string. i.e.
$headers = [...] .
"Message-ID: <". time() .rand(1,1000). "@".$_SERVER['SERVER_NAME'].">". "/r/n" [...];
?>
(rand() is used only for demonstration purposes. a better way is to use an index variable that increments (i++) after each mail)
I noticed that when multiple messeges were sent simultaneously, the message-id was the same (probably there was no miliseconds differential). My guess is that Outlook is collating messages with the same message-ID; a thing that causes only one email to pass to the Outlook inbox instead of a few.

i5513 27-Sep-2006 08:30

[EDITOR's NOTE: Following based off of a note originally by marcelo dot maraboli at usm dot cl which has been removed.]
I had a trouble with marcelo' function, I had to add "$val == 63" condition into "if" sentence for '?' character
# From marcelo post:
function encode_iso88591($string)
{
$text = '=?iso-8859-1?q?';
  for( $i = 0 ; $i < strlen($string) ; $i++ )
  {
$val = ord($string[$i]);
   if($val > 127 or $val == 63)
   {
$val = dechex($val);
$text .= '='.$val;
   }
   else
   {
$text .= $string[$i];
   }
  }
$text .= '?=';
  return $text;
}
and later use:
// create email
$msg = wordwrap($msg, 70);
$to = "destination@company.com";
$subject = encode_iso88591("hoydía caminé !!");
$headers =    "MIME-Versin: 1.0/r/n" .
"Content-type: text/plain; charset=ISO-8859-1; format=flowed/r/n" .
"Content-Transfer-Encoding: 8bit/r/n" .
"From: $from/r/n" .
"X-Mailer: PHP" . phpversion();
mail($to, $subject, $msg, $headers);
?>

johniskew2 19-Sep-2006 04:28

An important rule of thumb, because it seems few really follow it and it can alleviate so many headaches: When filtering your email headers for injection characters use a regular expression to judge whether the user's input is valid.  For example to see if the user entered a valid e-mail address use something like  [a-zA-Z0-9._%-]+@[a-zA-Z0-9.-]+/.[a-zA-Z]{2,4}.  Dont try to filter out bad characters (like searching for LF or CR), because you will ALWAYS miss something.  You can be sure your application is more secure going this route....provided the regular expression is valid!  This same point goes for any sort of form input not just for sending out emails.

thomas at p-devion dot de 24-Aug-2006 05:46

Change the function addattachment for multipartmail to auto detect the mime_content_type ...
function addattachment($file){
$fname = substr(strrchr($file, "/"), 1);
$data = file_get_contents($file);
$i = count($this->parts);
$content_id = "part$i." . sprintf("%09d", crc32($fname)) . strrchr($this->to_address, "@");
$this->parts[$i] = "Content-Type: ".mime_content_type($file)."; name=/"$fname/"/r/n" .
"Content-Transfer-Encoding: base64/r/n" .
"Content-ID: <$content_id>/r/n" .
"Content-Disposition: inline;/n" .
" filename=/"$fname/"/r/n" .
"/n" .
chunk_split( base64_encode($data), 68, "/n");
         return $content_id;
     }
?>

panoramical at gmail dot com 27-Jul-2006 11:19

Searched for ages on the internet trying to find something that parses EML files and then sends them...for all of you who want to send an EML files you first have to upload it, read it, then delete it. Here's my function...it's specialised for a single form where the user uploads the EML file.
if(isset($_POST['submit']))
{
// Reads in a file (eml) a user has inputted
function eml_read_in()
{
$file_ext = stristr($_FILES['upload']['name'], '.');
// If it is an eml file
if($file_ext == '.eml')
    {
// Define vars
$dir = 'eml/';
$file = $dir.basename($_FILES['upload']['name']);
$carry = 'yes';
// Try and upload the file
if(move_uploaded_file($_FILES['upload']['tmp_name'], $file))
        {
// Now attempt to read the file
if($eml_file = file($file))
            {
// Create the array to store preliminary headers
$headers = array();
$body = '';
$ii = -1;
// For every line, carry out this loop
foreach($eml_file as $key => $value)
                {
$pattern = '^';
                    if(((eregi($pattern, $value)))||($carry == 'no'))
                    {
// Stop putting data into the $headers array
$carry = 'no';
$i++;
$body .= $value;
                    }
                    else
                    {   
// Separate each one with a colon
if(($eml_file_expl = explode(':', $value))&&($carry == 'yes'))
                        {
// The row has been split in half at least...
if(isset($eml_file_expl[1]))
                            {
// Put it into the preliminary headers
$headers[$eml_file_expl[0]] = $eml_file_expl[1];
// There might be more semicolons in it...
for($i=2;$i<=$count;$i++)
                                {
// Add the other values to the header
$headers[$eml_file_expl[0]] .= ':'.$eml_file_expl[$i];
                                }
                            }   
                        }       
                    }
                }
// Clear up the headers array
$eml_values = array();
$eml_values[to] = $headers[To];
$eml_values[from] = $headers[From];
$eml_values[subject] = $headers[Subject];
$eml_values['reply-to'] = $headers['Reply-To'];
$eml_values['content-type'] = $headers['Content-Type'];
$eml_values[body] = $body;
unlink($file);
                return $eml_values;
            }
        }
        else
        {
            return '

File not uploaded - there was an error

';
        }
    }
}   
// Takes information automatically from the $_FILES array...
$eml_pattern = eml_read_in()
// Headers definable...through eml_read_in() again, but I'm guessing they'll be the same for each doc...
if(mail($eml_pattern[to], $eml_pattern[subject], $eml_pattern[content], $headers)) echo 'Mail Sent';
?>

24-Jul-2006 03:55

correction for class multipartmail
function addmessage($msg = "", $ctype = "text/plain"){
$this->parts[0] ....
?>
if you are adding attachment first and then addmessage you can easy overwrite added attachment - better use
function addmessage($msg = "", $ctype = "text/plain"){
$this->parts[count($this->parts)] ....
?>

sander at cartel dot nl 20-Jul-2006 10:26

I found out that a ms server (ESMTP MAIL Service, Version: 5.0.2195.6713) also had the problem using CRLF in the headers:
If messages are not received, try using a LF (/n) only. Some poor quality Unix mail transfer agents replace LF by CRLF automatically (which leads to doubling CR if CRLF is used). This should be a last resort, as it does not comply with RFC 2822.
The suggested fix works.
Sander

rsjaffe at gmail dot com 21-May-2006 09:10

Here's my way of detecting an attempt to hijack my mail form.
$request = array_map('trim',($_SERVER['REQUEST_METHOD'] == "POST") ? $_POST : $_GET) ;
//check for spam injection
$allfields = implode('',$request) ;
$nontext = $request ;
unset($nontext['message'] );
$nontextfields = implode ('',$nontext) ;
if ((strpos ($nontextfields,"//r")!==false) ||
    (strpos ($nontextfields,"//n")!==false) ||
    (stripos ($allfields,"Content-Transfer-Encoding")!==false) ||
    (stripos ($allfields,"MIME-Version")!==false) ||
    (stripos ($allfields,"Content-Type")!==false) ||
    ($request['checkfield']!=$check) ||
    (empty($_SERVER['HTTP_USER_AGENT']))) die('Incorrect request') ; //stop spammers ?>
First, I put the data into an array $request, then set up two strings: $allfields, which is just all fields concatenated, then $nontext, which excludes those fields in which /r/n is allowed (e.g., the message body). Any form field in which /r/n is allowed should be unset in the $nontext array before the second implode function (my message field is called 'message', so I unset that). I also include a hidden field in the form with a preset value ('checkfield', $check), so I can see if something is trying to alter all fields.
This is a combination of a lot of things mentioned in the messages below...

steve at stevewinnington dot co dot uk 13-Mar-2006 04:24

To all you guys out there having problems with mail scripts throwing back this (and you know your scripts are right!!)...
Warning: mail() [function.mail]: "sendmail_from" not set in php.ini or custom "From:" header missing in:
I had started seeing this after moving some scripts from 4.3 servers to 5.
a dirty get around is using
ini_set ("sendmail_from","a.body@acompany.com");
to force the From header.
Not ideal but it works.
;)

Nimlhug 11-Mar-2006 06:41

As noted in other, well, notes; the "additional headers" parameter can be easily exploited, when doing things like:
  mail( $_POST['to'], $_POST['subject'], $_POST['message'], 'Reply-to: '.$_POST['from']."/r/n" );
?>
An easy way of fixing this, is removing CRLFs from the header-strings, like so:
  $_POST['from'] = str_replace( "/r/n", '', $_POST['from'] );
?>
This way, the extra data will be part of the previous header.

junaid at techni-serve dot com 07-Mar-2006 05:49

Note: on class "multipartmail".  Modify the function buildmessage with the following and it will work great.
function buildmessage(){
         $this->message = "This is a multipart message in mime format./n";
         $cnt = count($this->parts);
         for($i=0; $i<$cnt; $i++){
           $this->message .= "--" . $this->boundary . "/n" .$this->parts[$i];
         }
        $this->message .= "--" . $this->boundary . "-- /n";
     }
Thank for all the help.

Ben Cooke 15-Dec-2005 01:34

Note that there is a big difference between the behavior of this function on Windows systems vs. UNIX systems. On Windows it delivers directly to an SMTP server, while on a UNIX system it uses a local command to hand off to the system's own MTA.
The upshot of all this is that on a Windows system your  message and headers must use the standard line endings /r/n as prescribed by the email specs. On a UNIX system the MTA's "sendmail" interface assumes that recieved data will use UNIX line endings and will turn any /n to /r/n, so you must supply only /n to mail() on a UNIX system to avoid the MTA hypercorrecting to /r/r/n.
If you use plain old /n on a Windows system, some MTAs will get a little upset. qmail in particular will refuse outright to accept any message that has a lonely /n without an accompanying /r.

fnjordy at gmail dot com 05-Oct-2005 09:54

Another example of sending a utf-8 HTML mail:
$to = 'bob@example.com';
$subject = 'Wakeup bob!';
$message = 'yo, whassup?';
$headers = "From: server@example.com/r/n" .
'X-Mailer: PHP/' . phpversion() . "/r/n" .
"MIME-Version: 1.0/r/n" .
"Content-Type: text/html; charset=utf-8/r/n" .
"Content-Transfer-Encoding: 8bit/r/n/r/n";
// Send
mail($to, $subject, $message, $headers);
?>

fontajos at phpeppershop dot com 21-Sep-2005 03:24

Problems with Microsoft Exchange and PHP as ISAPI-module
We found out, that if you want to send multipart mime emails using the PHP mail-function on a Windows box using a Microsoft Exchange server, you have to use separate containers for the mail body and the mail header.
In many examples like in http://www.zend.com/zend/trick/html-email.php or in the book PHP developers cookbook you find html multipart/alternative mailing solutions that build the mime header and the mail body into one PHP variable and send this as fourth argument (header) to the PHP mail-function. This works fine on most systems but not on the above mentioned combination.
We found a rather trivial solution: Simply split the mime mail header and the mail body into two separate variables and give them separately to the PHP mail function, example:
//add From: header
$headers = "From: webserver@localhost/r/n";
//specify MIME version 1.0
$headers .= "MIME-Version: 1.0/r/n";
//unique boundary
$boundary = uniqid("HTMLDEMO");
//tell e-mail client this e-mail contains//alternate versions
$headers .= "Content-Type: multipart/mixed; boundary = $boundary/r/n/r/n";
//plain text version of message
$body = "--$boundary/r/n" .
"Content-Type: text/plain; charset=ISO-8859-1/r/n" .
"Content-Transfer-Encoding: base64/r/n/r/n";
$body .= chunk_split(base64_encode("This is the plain text version!"));
//HTML version of message
$body .= "--$boundary/r/n" .
"Content-Type: text/html; charset=ISO-8859-1/r/n" .
"Content-Transfer-Encoding: base64/r/n/r/n";
$body .= chunk_split(base64_encode("This the HTML version!"));
//send message
mail("root@localhost", "An HTML Message", $body, $headers);
?>

GwarDrazul 15-Sep-2005 11:01

The article mentioned below is quite good to understand the problem of header injection. However, it suggests the following as a solution: look for "/n" and "/r" inside your user input fields (especially in those used for the $header param) and, if found reject the mail.
Allthough this will probably work I still believe it is better to have a "white list" of allowed characters instead of a "black list" with forbidden characters.
Example:
If you want a user to enter his name, then allow characters only!
If you want a user to enter his email adress, then check if the entry is a valid email adress.
Doing so might automatically solve problems which you didn't think of when you created the "black list". For SMTP headers colons are needed. If you check for a valid email adress the hacker won't be able to enter colons inside that form field.
I suggest using regular expressions for those checks.
For more information about regular expressions see:
http://www.regular-expressions.info/

javier at zincro dot com 31-May-2005 04:48

This might be something obvious, but it gave me a lot of headache to find out:
If you use an ascii char#0 in the "string mensaje" parameter, it will truncate the message till that point, (this happened to me sending a message read from a file)
For example:
$hs_email="blabla@blabla.com";
$hs_asunto="a message for you";
$hs_contenido="beginofcontent_";
$hs_contenido.=chr(0);
$hs_contenido.="_endofcontent";
mail($hs_email,$hs_asunto,$hs_contenido);
?>
Will result in an email that only contains the string:
beginofcontent_
Anyway, just in case it can save someone some time...

msheldon at desertraven dot com 15-May-2005 07:09

Just a comment on some of the examples, and as a note for those who may be unaware. The SMTP RFC 822 is VERY explicit in stating that /r/n is the ONLY acceptable line break format in the headers, though is a little vague about the message body. While many MTAs will deal with just /n, I've run accross plenty of them that will exhibit "interesting" behaviours when this happens. Those MTAs that are strict in compliance will definitely break when header lines are terminated with only /n. They will also most likely break if the body of the message contains more than 1000 consecutive characters without a /r/n.*
Note that RFC 821 is a little more clear in defining:
"line
      A a sequence of ASCII characters ending with a ."
RFC 821 makes no distinction between header lines and message body lines, since both are actually transmitted during the DATA phase.
Bottom line, best practice is to be sure to convert any bare /n characters in the message to /r/n.
* "The maximum total length of a text line including the is 1000 characters" (RFC 821)

jonte at macnytt dot com 24-Apr-2005 11:16

Users of Mac OS X Server need to activate SMTP part of the Mailserver before this is working.
Also note that if the ISP has blocked port 25 outgoing, you run into problems. You can find more info about this in the SMTP server log in Server Admin application if you run OSX Server.

18-Apr-2005 07:20

A co-worker of mine had a problem where she needed to have a backslash in the header. Basically, the name of the company has a couple of backslashes in it. However, when the recipient was receiving the email, the "From:" part had the backslashes removed. We got it to work but placing three backslashes whenever we wanted one to show up. I'd assume that the mail server was modifying the headers and this is not really an issue with php. Anyway, thought this might help someone.

benles at bldigital dot com 21-Mar-2005 05:47

I get a 550 error when using mail() with this To format:
User
When it's changed to just the bare email, it works fine. Just FYI that some mail servers may behave this way.

php dot net at schrecktech dot com 03-Mar-2005 12:07

When sending MIME email make sure you follow the documentation with the "70" characters per line...you may end up with missing characters...and that is really hard to track down...

jdephix at hotmail dot com 02-Mar-2005 08:25

How to add multiple attachment to an email:
An email can be split into many parts separated by a boundary followed by a Content-Type and a Content-Disposition.
The boundary is initialized as follows:
$boundary = '-----=' . md5( uniqid ( rand() ) );
?>
You can attach a Word document if you specify:
$message .= "Content-Type: application/msword; name=/"my attachment/"/n";
$message .= "Content-Transfer-Encoding: base64/n";
$message .= "Content-Disposition: attachment; filename=/"$theFile/"/n/n";
?>
When adding a file you must open it and read it with fopen and add the content to the message:
$path = "whatever the path to the file is";
$fp = fopen($path, 'r');
do //we loop until there is no data left
{
$data = fread($fp, 8192);
        if (strlen($data) == 0) break;
$content .= $data;
      } while (true);
$content_encode = chunk_split(base64_encode($content));
$message .= $content_encode . "/n";
$message .= "--" . $boundary . "/n";
?>
Add the needed headers and send!
$headers  = "From: /"Me/" /n";
$headers .= "MIME-Version: 1.0/n";
$headers .= "Content-Type: multipart/mixed; boundary=/"$boundary/"";
mail('myAddress@example.com', 'Email with attachment from PHP', $message, $headers);
?>
Finally, if you add an image and want it displayed in your email, change the Content-Type from attachment to inline:
$message .= "Content-Disposition: inline; filename=/"$theFile/"/n/n";
?>
Enjoy!

grey at greywyvern dot moc 18-Feb-2005 08:47

When including your own custom headers try not to include a trailing /r/n at the end of the last header.  Leaving the /r/n causes an extra line-feed at the beginning of the message body, so your message will start on the second line.

Sven Riedel 10-Jul-2004 01:22

mail() requires /bin/sh to exist in Unix environments, next to a mail delivery program. This is very relevant when setting up apache in a chroot environment. Unfortunately this isn't anywhere in the documentation and took me several months to figure out.

nospam at mingo dot ath dot cx 09-May-2004 01:55

If you're using a linux server using Postfix, and your server hasn't the host name set to a valid name (because it's behind a firewall in an intranet), it's possible that when sending mails using the mail function, some mail servers reject them. This is because they can't check the return path header. If you want to change the Return-Path used by sendmail init the php.ini and edit the sendmail_path variable to this:
sendmail_path = "sendmail -t -i -F webmaster@yoursite.com -f webmaster@yoursite.com"

Paul 25-Feb-2004 10:51

My mime multipart/alternative messages were going ok, until I switched to qmail with php .. after years of painfull searching, I came across this on the Life With Qmail 'Gotchas' section:
G.11. Carriage Return/Linefeed (CRLF) line breaks don't work
qmail-inject and other local injection mechanisms like sendmail don't work right when messages are injected with DOS-style carriage return/linefeed (CRLF) line breaks. Unlike Sendmail, qmail requires locally-injected messages to use Unix newlines (LF only). This is a common problem with PHP scripts.
So now, I can go back to sending emails with text AND html components :)

roberto dot silva at mexicoshipping dot net 24-Jan-2004 12:16

If you can't use or don't understand how to use the sendmail program from linux, you can use a PEAR object to send mail.
include("Mail.php");
$recipients = "mailto@example.com";
$headers["From"]    = "mailfrom@example.com";
$headers["To"]      = "mailto@example.com";
$headers["Subject"] = "Test message";
$body = "TEST MESSAGE!!!";
$params["host"] = "example.com";
$params["port"] = "25";
$params["auth"] = true;
$params["username"] = "user";
$params["password"] = "password";
// Create the mail object using the Mail::factory method
$mail_object =& Mail::factory("smtp", $params);
$mail_object->send($recipients, $headers, $body);
?>
In my case, i use a smtp server that require authentication, and sendmail configuration is almost cryptic to me.
PEAR is already installed in PHP 4.0.3 , if not, you must go to http://pear.php.net/ and install it, in my case, I needed to add the Socket.php to the PEAR library.

f dot touchard at laposte dot net 31-Jan-2003 03:46

***Encoding plain text as quoted-printable in MIME email***
If you don't want to install IMAP and use imap_8bit() to encode plain text or html message as quoted-printable
(friendly french special characters encoding :-) in MIME email, try this function.
I haven't fully tested it ( like with microtime with long mails). I send html message as 7-bit, so I didn't try yet with html.
If you have good html practise, you don't really need to encode html as quote-printable as it only uses 7-bit chars.
F.Touchard
function qp_encoding($Message) {
/* Build (most polpular) Extended ASCII Char/Hex MAP (characters >127 & <255) */
for ($i=0; $i<127; $i++) {
$CharList[$i] = "/".chr($i+128)."/";
$HexList[$i] = "=".strtoupper(bin2hex(chr($i+128)));
    }
/* Encode equal sign & 8-bit characters as equal signs followed by their hexadecimal values */
$Message = str_replace("=", "=3D", $Message);
$Message = preg_replace($CharList, $HexList, $Message);
/* Lines longer than 76 characters (size limit for quoted-printable Content-Transfer-Encoding)
        will be cut after character 75 and an equals sign is appended to these lines. */
$MessageLines = split("/n", $Message);
$Message_qp = "";
    while(list(, $Line) = each($MessageLines)) {
        if (strlen($Line) > 75) {
$Pointer = 0;       
            while ($Pointer <= strlen($Line)) {
$Offset = 0;
                if (preg_match("/^=(3D|([8-9A-F]{1}[0-9A-F]{1}))$/", substr($Line, ($Pointer+73), 3))) $Offset=-2;
                if (preg_match("/^=(3D|([8-9A-F]{1}[0-9A-F]{1}))$/", substr($Line, ($Pointer+74), 3))) $Offset=-1;
$Message_qp.= substr($Line, $Pointer, (75+$Offset))."=/n";
                if ((strlen($Line) - ($Pointer+75)) <= 75) {               
$Message_qp.= substr($Line, ($Pointer+75+$Offset))."/n";
                    break 1;
                }
$Pointer+= 75+$Offset;
            }
        } else {
$Message_qp.= $Line."/n";
        }
    }       
    return $Message_qp;
}
?>

gordon at kanazawa-gu dot ac dot jp 29-Dec-2002 02:04

If your server doesn't have mb_send_mail() enabled but you want to use non-ascii (multi-byte) chars in an email's subject or name headers, you can use something like the following:
$charset = "iso-2202-jp"; // japanese
$to = encode("japanese name 01", $charset) . " ";
$from = encode("japanese name 02", $charset) . " ";
$subject = encode("japanese text");
$message = "does not need to be encoded";
mail($to, $subject, $message, $from);
function encode($in_str, $charset) {
$out_str = $in_str;
    if ($out_str && $charset) {
// define start delimimter, end delimiter and spacer
$end = "?=";
$start = "=?" . $charset . "?B?";
$spacer = $end . "/r/n " . $start;
// determine length of encoded text within chunks
        // and ensure length is even
$length = 75 - strlen($start) - strlen($end);
/*
            [EDIT BY danbrown AT php DOT net: The following
            is a bugfix provided by (gardan AT gmx DOT de)
            on 31-MAR-2005 with the following note:
            "This means: $length should not be even,
            but divisible by 4. The reason is that in
            base64-encoding 3 8-bit-chars are represented
            by 4 6-bit-chars. These 4 chars must not be
            split between two encoded words, according
            to RFC-2047.
        */
$length = $length - ($length % 4);
// encode the string and split it into chunks
        // with spacers after each chunk
$out_str = base64_encode($out_str);
$out_str = chunk_split($out_str, $length, $spacer);
// remove trailing spacer and
        // add start and end delimiters
$spacer = preg_quote($spacer);
$out_str = preg_replace("/" . $spacer . "$/", "", $out_str);
$out_str = $start . $out_str . $end;
    }
    return $out_str;
}
// for details on Message Header Extensions
// for Non-ASCII Text see ...
// http://www.faqs.org/rfcs/rfc2047.html
?>

stevenlim at Edinburgh-Consulting dot com 06-Sep-2002 07:53

How to detect a bounce email
1. make sure the email you send out have the header
"Return-Path: detect-bounce@example.com/r/n",
&
"Return-Receipt-To: bounce@example.com/r/n"
2. setup this detect-bounce mail account at your mail server
3. redirect the incoming mail from this email account to your php script (check your mail server doc on how do this)
4. your php script will then be able to process the incoming email in whatever way you like, including to detect bounce mail message (use regexp search).
Note that the mail will be not be store after the mail server has redirect to your script.  If you want to store it, you need additional code in your script
Hope the above help
Steven Lim
IT Consultant (www.Edinburgh-Consulting.com)

http://php.net/manual/en/function.mail.php

基于Simulink的MIMO-OFDM系统仿真建模示例 MIMO概述MIMO技术利用多个天线进行信号发送和接收,通过空间复用来提高数据传输速率,或通过空间分集来增强信号的可靠性。OFDM概述OFDM是一种将高速率数据流分成多个低速数据流并行传输的技术,每个子载波都采用调制方式(如BPSK、QPSK),并通过IFFT/FFT变换实现串并转换。MIMO-OFDM优势结合了MIMO的空间分集增益与OFDM对抗多径效应的能力,适用于宽带无线通信系统。提供了更高的数据速率和更好的频谱效率,是现代无线通信标准(如4G LTE、5G NR等)的核心技术之一。 阅读详情

相关推荐

Email邮件发送退信分析大全

Email邮件发送退信分析大全 一般情况下,当您发送的邮件无法正常到达收件人时,mail 邮件系统将会自动给您发一封警告信,这封退信通知里面包含了无法正常发送到对方邮件地址的原因,所以绝大多数情况下可以通过退信通知来找出发信失败的原因及解决方式。 当您收到退信时,可以选择将您收到的退信通知的原件完整的转发给我们,由我们协助分析退信产生的原因并提供对应的解决方式。或者您可以参照以下的方式,查看退信内容确认退信原因以便找出解决方式。下面这是一个典型的退信的内容,右边对应的是退信内容的含义............

PHP mail 通过Windows的SMTP发送邮件失败的解决方案

今天调试WordPress的邮件发送功能,总是提示:SMTP server response: 501 5.5.4 Invalid Address。用telnet测试SMTP是没有任何问题的

智慧应急指挥管理平台方案PPT(53页).pptx

1. 行业背景与政策指导近年来,随着自然灾害、事故灾难、公共卫生事件和社会安全事件的频繁发生,我国应急管理形势异常严峻。政府高度重视应急管理工作,成立了应急管理部,并出台了多项政策,如《国家突发事件应急体系建设“十三五”规划》和《应急管理信息化发展战略规划框架(2018-2022年)》,推动应急管理信息化发展。这些政策强调利用云计算、大数据、物联网、人工智能等新一代信息技术,构建“四横四纵”的总体架构,包括全域覆盖感知网络、天地一体的应急通信网等,以实现应急管理信息化的跨越式发展。2. 调研与需求分析为推进市综合指挥信息平台项目,相关部门对临湘应急局、林业局、气象局等单位进行了调研,了解各单位的硬件配置、网络情况、已建业务系统和视频监控等。调研发现,虽然各单位已有一定的信息化基础,但存在防护监控点位少、执法设备落后、视频资源不集中等问题。通过调研,确定了市综合指挥平台的数据来源,收集整理了各单位的信息系统建设情况和基础数据,为实现数据接入和统一指挥调度奠定了基础。3. 总体设计与建设内容应急指挥信息系统的总体设计围绕事前、事发、事中、事后全过程风险管理展开。系统设计包括智能交互层、业务应用层和数据接入层,涵盖值班值守、综合分析研判、协同会商、辅助决策、指挥调度、信息发布等功能模块。建设内容分为三个阶段:第一阶段夯实基础,开发应用;第二阶段强化覆盖,深化应用;第三阶段提升增效,技术升级。通过这些建设内容,系统能够实现对突发事件的全面监测、快速响应和有效处置。4. 关键功能与应用应急指挥信息系统的关键功能包括值班值守、综合分析研判、协同会商、辅助决策、指挥调度、信息发布等。系统支持值班人员管理、事件接报、综合查询、数据可视化、音视频融合、资源需求分析、一键调度、任务跟踪和反馈等。通过这些功能,系统能够实现对应急资源的全面监控、快速调度和有效管理,提升应急处置的效率和效果。5. 专题研判与案例推演系统还具备专题研判和案例推演功能。通过接入地震、消防救援、森林消防、地质、水利、气象等专题指挥研判系统,实现信息汇聚的可视化展现。利用大数据分析和知识图谱技术,结合现场信息,进行事故灾害的专题分析和研判。同时,系统支持案例的结构化处理和情景再现,提供案例库,实现对历史相似案例的自动关联匹配,为应急处置提供决策支撑。

邮件发送失败原因分析

1.代码在没有改动的基础上发送邮件失败可能是动态参数出了问题,可以尝试其他邮箱明文参数进行测试。 2.网上很多说某某函数被禁用,实际上没有任何依据。所以还是更换不同后缀邮箱进行测试,直到通过。 3.有的帖子说加‘ssl’属性,恕不之端口和域名也是需要随着邮箱后缀进行更改的。 ...

一个草根敲键盘的故事 4512

发送邮件常见出错代码

按照下列“Q”代表问题,“A”代表解答。  Q:the server says:550 relaying mail to Q:The server says:550 Q:the server says:550 5.7.1 relaying not permitted:  A:使用某些Smtp服务器时,限制了收件人的地址,只能换一个Smtp服务器。  Q:The server says:550 Q:

iwebsms的专栏 4387

使用SMTP协议发邮件

使用SMTP协议发邮件,经过测试163可以正常使用,其他邮箱可能无法正常使用。开发环境:Windows XP 32 +VS2005 代码如下: #include <winsock2.h> #pragma comment( lib, "ws2_32.lib" ) #include <stdio.h> #include <conio.h&...

banghu7102的博客 1070

网易邮箱发送失败的原因

1.设置故障,再网易的web界面开启pop3、imap协议即可 一般出现再刚下载还未设置 2.免费信箱故障 解决方法:给自己发邮件,如果没有受到,则免费信箱有问题,去手机店处理即可 3.对方线路问题 测试方法:让一个朋友给他发送邮件看看是否能够收到 4.收件人地址方面: (1)在发送邮件时,请填写完整、正确 的收件人地址(一般电子邮件地址格式,不可多出空格或其他特殊字符) (2)群发收件人的数量不可超过40个,群发地址之家记得使用半角的分号“;”隔开; (3)检查邮箱是否收到禁用通知的邮件,被禁用的邮箱可正

NY_YN的博客 2万+

网络编程

网络编程是Java最擅长的方向之一,使用Java进行网络编程时,由虚拟机实现了底层复杂的网络协议,Java程序只需要调用Java标准库提供的接口,就可以简单高效地编写网络程序。 网络编程基础 计算机网络是指两台或更多的计算机组成的网络,在同一个网络中,任意两台计算机都可以直接通信,因为所有计算机都需要遵循同一种网络协议。 那什么是互联网呢?互联网是网络的网络(internet),即把很多计算机网络连接起来,形成一个全球统一的互联网。 对某个特定的计算机网络来说,它可能使用网络协议ABC,而另一个计算机网络可

qq_42530332的博客 1061

php mail send,mb_send_mail

用户评论:[#1]Filip [2015-04-18 09:52:55]Ihadtousemb_internal_encoding()alsotogetproperlyencodedmessage.[#2]contact-form at contactrobot dot com [2013-01-04 11:52:48]Whileusingtherighttagsme...

Aysen的博客 791

php mail send,PHP Mail不发送邮件? (PHP Mail doenst send a mail?)

2015-05-15 21:28:590My php script doesnt send a mail. What's wrong? Do i need headers or other things? Is mail not supported?Is lorem ipsum a php no mail hack/bug?Lorem ipsum dolor sit amet, consectet...

weixin_32298151的博客 205

mail_send.php

// 接收值 $toman=$_POST['toman']; $titles=$_POST['title']; $contents=$_POST['content']; $fromman=$_POST['fromman']; //引入类  require 'Mail.class.php'; if( Mail::send($titles,$contents,$fromman,$

郝云博客 3552

send mail by php

1. 使用 mail() 函数 没什么好讲的,就是使用系统自带的smtp系统来发送,一般是使用sendmail来发。这个按照各个系统不同而定。使用参考手册。 2. 使用管道的形式 昨天刚测试成功,使用本地的qmail来发送邮件。 [code="php"]/* 使用qmail发送邮件函数 */ function send_check_mail($email, $subj...

sunbo1591的专栏 426

php调用send mail,PHP send mail phpmailer测试用例

官方样例require("class.phpmailer.php");$mail = new PHPMailer();$mail->IsSMTP(); // 启用SMTP$mail->Host = "smtp1.example.com"; //SMTP服务器$mail->SMTPAuth = true; ...

weixin_34138585的博客 324

php send_mail 函数

function Send_Mail( $to_addr, $from_addr, $subject, $message ) { $encode = 'UTF-8'; mb_language( "Japanese" ); mb_internal_encoding($encode); $headers = 'MIM...

燕雀笔记博 752

php mail send,PHP: mb_send_mail - Manual

As others say, mb_encode_mimeheader() seems to have a bug with JIS(ISO-2022-JP) encording. Token indicating start and end of multibyte char is inserted only before start of encoding and after the all....

weixin_42511512的博客 289

20080511 - php send_mail()

写了一个网站,反馈页面要用到 php 发邮件,无奈网站空间的 php 没有配置可用的邮件服务器,发现 php 也可通过 socket 裸发邮件。配一个可用的帐号,下面函数就可用了。 1functionsend_mail($to,$subject='未标题',$body){ 2$loc_host="smtp.126.com"; 3$smtp_acc="...

weixin_30552811的博客 582

php mb_send_mail,PHP: mb_send_mail - Manual

As others say, mb_encode_mimeheader() seems to have a bug with JIS(ISO-2022-JP) encording. Token indicating start and end of multibyte char is inserted only before start of encoding and after the all....

weixin_35397235的博客 313

php html out,Send out html emails in php using the mail func...

Send out html emails in php using the mail functionThe mail function of php can be used to send not only plain text emails, but html emails too. Thedocumentationpage shows how to do that.Here is a e...

weixin_35079944的博客 174

Drupal 学习(6)-php Send Mail Function

function send_mail($to, $subject = 'No subject', $body){$loc_host = "Administrator";$smtp_acc = "XXX@163.com"...

congyaguan5319的博客 409
上一篇: Heartbeat script to watch vital server
下一篇: csv文件简介
superxgl
博客等级 码龄18年 100粉丝 166原创
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值