From:             php at richardneill dot org
Operating system: Linux
PHP version:      6CVS-2009-07-07 (CVS)
PHP Bug Type:     Feature/Change Request
Bug description:  wish: mail() to support attachments

Description:
------------
It would be a really nice if mail() supported an extra parameter for 
attachments. Perhaps an array containing the filenames (and whose 
keys, if present, would be the name of the attachments).

(I know there are ways of doing this by installing pear classes, but 
that isn't always an option. And it's awkward to do it by hand).

Given that mail() is already rather overloaded, it might be worth 
adding another function, say mail_attach() to do it.



Reproduce code:
---------------
Current alternative:

$cmd = "echo '$BODY_TEXT'  | mutt -s '$SUBJECT' -a '$filename_1' -a
'$filename_2' '$email'";
exec ($cmd);

which is ugly, has external dependencies, only works on Linux, and will
break in interesting ways if shell-quoting isn't corrected.



-- 
Edit bug report at http://bugs.php.net/?id=48826&edit=1
-- 
Try a CVS snapshot (PHP 5.2):        
http://bugs.php.net/fix.php?id=48826&r=trysnapshot52
Try a CVS snapshot (PHP 5.3):        
http://bugs.php.net/fix.php?id=48826&r=trysnapshot53
Try a CVS snapshot (PHP 6.0):        
http://bugs.php.net/fix.php?id=48826&r=trysnapshot60
Fixed in CVS:                        
http://bugs.php.net/fix.php?id=48826&r=fixedcvs
Fixed in CVS and need be documented: 
http://bugs.php.net/fix.php?id=48826&r=needdocs
Fixed in release:                    
http://bugs.php.net/fix.php?id=48826&r=alreadyfixed
Need backtrace:                      
http://bugs.php.net/fix.php?id=48826&r=needtrace
Need Reproduce Script:               
http://bugs.php.net/fix.php?id=48826&r=needscript
Try newer version:                   
http://bugs.php.net/fix.php?id=48826&r=oldversion
Not developer issue:                 
http://bugs.php.net/fix.php?id=48826&r=support
Expected behavior:                   
http://bugs.php.net/fix.php?id=48826&r=notwrong
Not enough info:                     
http://bugs.php.net/fix.php?id=48826&r=notenoughinfo
Submitted twice:                     
http://bugs.php.net/fix.php?id=48826&r=submittedtwice
register_globals:                    
http://bugs.php.net/fix.php?id=48826&r=globals
PHP 4 support discontinued:          http://bugs.php.net/fix.php?id=48826&r=php4
Daylight Savings:                    http://bugs.php.net/fix.php?id=48826&r=dst
IIS Stability:                       
http://bugs.php.net/fix.php?id=48826&r=isapi
Install GNU Sed:                     
http://bugs.php.net/fix.php?id=48826&r=gnused
Floating point limitations:          
http://bugs.php.net/fix.php?id=48826&r=float
No Zend Extensions:                  
http://bugs.php.net/fix.php?id=48826&r=nozend
MySQL Configuration Error:           
http://bugs.php.net/fix.php?id=48826&r=mysqlcfg

Reply via email to