473,416 Members | 1,628 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,416 software developers and data experts.

How can i send the mail with db field attachment?

Hi
I am already send a mail using Php with some attachement into it. My Problem is the attachement file is in my Database(mysql). I don't know how can i get from database and then add to my mail.
Expand|Select|Wrap|Line Numbers
  1. <?php  function send_mail($emailaddress, $fromaddress, $emailsubject, $body, $ccaddress, $attachments=false)  {   
  2.  $eol="\r\n";  
  3.   $mime_boundary=md5(time());            # Common Headers    
  4.   $headers .= 'From: Sangeetha<'.$fromaddress.'>'.$eol;    
  5. $headers .= 'Cc: <'.$ccaddress.'>'.$eol;       
  6.  $headers .= "Message-ID: <".$now."TheSystem@".$_SERVER['SERVER_NAME'].">".$eol;   
  7.  $headers .= "X-Mailer: PHP v".phpversion().$eol;          // These two to help avoid spam-filters    
  8.   # Boundry for marking the split & Multitype Headers 
  9.    $headers .= 'MIME-Version: 1.0'.$eol;  
  10.   $headers .= "Content-Type: multipart/related; boundary=\"".$mime_boundary."\"".$eol;      
  11.   $msg = "";           
  12.    if ($attachments !== false)    {   
  13.      for($i=0; $i < count($attachments); $i++)      { 
  14.        if (is_file($attachments[$i]["file"]))        {             # File for Attachment       
  15. $file_name = substr($attachments[$i]["file"], (strrpos($attachments[$i]["file"], "/")+1));                 
  16. $handle=fopen($attachments[$i]["file"], 'rb');         
  17. $f_contents=fread($handle, filesize($attachments[$i]["file"]));          $f_contents=chunk_split(base64_encode($f_contents));    //Encode The Data For Transition using base64_encode();          
  18. fclose($handle);                    # Attachment          
  19. $msg .= "--".$mime_boundary.$eol;          
  20. $msg .= "Content-Type: ".$attachments[$i]["content_type"]."; name=\"".$file_name."\"".$eol;          
  21. $msg .= "Content-Transfer-Encoding: base64".$eol;          
  22. $msg .= "Content-Disposition: attachment; filename=\"".$file_name."\"".$eol.$eol; // !! This line needs TWO end of lines !! IMPORTANT !!          
  23. $msg .= $f_contents.$eol.$eol;               
  24.    }    
  25.   }    
  26. }        # Setup for text OR html    
  27. $msg .= "Content-Type: multipart/alternative".$eol;        # Text Version    
  28. $msg .= "--".$mime_boundary.$eol;    
  29. $msg .= "Content-Type: text/plain; charset=iso-8859-1".$eol;    
  30. $msg .= "Content-Transfer-Encoding: 8bit".$eol;    
  31. $msg .= strip_tags(str_replace("<br>", "\n", $body)).$eol.$eol;        # HTML Version    
  32. $msg .= "--".$mime_boundary.$eol;    
  33. $msg .= "Content-Type: text/html; charset=iso-8859-1".$eol;    
  34. $msg .= "Content-Transfer-Encoding: 8bit".$eol;    
  35. $msg .= $body.$eol.$eol;        # Finished    
  36. $msg .= "--".$mime_boundary."--".$eol.$eol;  // finish with two eol's for better security. see Injection.         
  37.  # SEND THE EMAIL    ini_set(sendmail_from,$fromaddress);  // the INI lines are to force the From Address to be used !    
  38. mail($emailaddress, $emailsubject, $msg, $headers);    ini_restore(sendmail_from);   
  39.  echo "mail send";  }    
  40. $emailaddress = "xxx@xx.com";  
  41. $fromaddress = "yyy@yahoo.com";  
  42. $ccaddress = "zzz@yahoo.com";    
  43. $emailsubject = "Test";    $link = mysql_connect("myConnection") or die                        ("Error connecting to mysql:");    mysql_select_db("index",$link) or die("Unable to select database: . mysql_error()");   
  44.  //$commid = $_POST["CommId"];  
  45. $selectSql = "select CommId, Attachment from COMM_EML_ATTACHMENT where CommId = 4167";    $
  46. result = mysql_query($selectSql,$link); 
  47.  while($row = mysql_fetch_array($result))  { 
  48.  $commid = $row["CommId"];  # Use relative paths to the attachments    $attachments = Array(    Array("file"=> $row["Attachment"],"content_type"=>"application/msword"));  
  49.  
  50. # Message Body  $body="This is a test message! ";   
  51.  
  52. $result = send_mail($emailaddress, $fromaddress, $emailsubject, $body, $ccaddress, $attachments);  }  
  53. mysql_close($link);  ?>
please help to solve it

Thanks
Chitu.
Sep 20 '07 #1
1 2398
pbmods
5,821 Expert 4TB
Heya, Chitu03. Welcome to TSDN!

You can retrieve your file from the database the same way you would retrieve any other data. MySQL and PHP simply treat the file as a really long binary string.

[EDIT: Ah. I see that the framework you are using requires a file path. Try using file_put_contents() to create a temporary file.]
Sep 20 '07 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

2
by: Jammer | last post by:
Can someone give me some sample code to use CDONTS.new to send email with an attachment? I've got sample code from the following website; ...
2
by: Robbie De Sutter | last post by:
Hello, How do I open a new, empty e-mail message from the default e-mail client whereby the sender is given and a file is attached? Currently I use the command (vb.net): ---...
2
by: m_evergreen | last post by:
Errors: An unhandled exception of type 'System.Web.HttpException' occurred in system.web.dll Additional information: Could not access 'CDO.Message' object. innerexception is "Exception has...
10
by: Mike Charney | last post by:
Is there a simple way to send SMTP email from Access VBA? Mike m charney at dunlap hospital dot org
2
by: Cimento Cola | last post by:
Hello all. Hope anyone can help me! I have this form, with: Please choose your file: (browse) The main purpose is the user to select a local file and then when he submits a mail should be...
3
by: =?Utf-8?B?SHVnaA==?= | last post by:
Hi There, I use follow code to send email inside VB.NET 2005. It does not work well. Error message of "Failure sending email" would occue. However, email was sent out sometimes. I am confused...
1
by: maxxxxel | last post by:
Hi Can anyone help me with some asp code , I changed the code to use CDO.message instead of the old cdont.sys to send mail from a ASP webpage which works fine. Our problem is that when we send...
1
by: sxwend | last post by:
I am trying to use the following post results (http://www.thescripts.com/forum/thread189759.html) and add another requirement. I need to send the results to just the email addresses that the query...
1
by: deepaks85 | last post by:
Dear All, I want to send some data through a form with Multiple attachment in an HTML Format. I have tried it but it is not working for me. I am able to send data without attachment but with the...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.