Today's Posts Follow Us On Twitter! TFL Members on Twitter  
Forum search: Advanced Search  
Navigation
Marketplace
  Members Login:
Lost password?
  Forum Statistics:
Forum Members: 24,254
Total Threads: 80,792
Total Posts: 566,471
There are 557 users currently browsing (tf).
 
  Our Partners:
 
  TalkFreelance     Design and Development     Programming     PHP and MySQL :

Zend mail - help needed

Thread title: Zend mail - help needed
     
    Thread tools Search this thread Display Modes  
Prev Previous Post   Next Post Next
12-07-2011, 11:01 AM
#1
pinzdesign.com is offline pinzdesign.com
Status: I'm new around here
Join date: Feb 2011
Location: Copenhagen/DK
Expertise: php
Software: Paint
 
Posts: 15
iTrader: 0 / 0%
 

pinzdesign.com is on a distinguished road

  Old  Zend mail - help needed

I got a problem with Zend mail - addTo doesn't want to add addresses from an array, thou it does send with a single recipient from another script. It says 'bad syntaxys of recipient'.

Here is code part:

PHP Code:
        // Setting recipient
        
$q mysql_query("SELECT * FROM emailscategoriesmap WHERE fk_categoriesId='".$row['fk_categoriesId']."'");
        while(
$r mysql_fetch_assoc($q))
        {
            
$qu mysql_query("SELECT * FROM emails WHERE emailsId='".$r['fk_emailsId']."' AND emails_status='aktiv'");
            
$res $qu;
            
$e mysql_fetch_assoc($res);
            
$email mysql_real_escape_string($e['address']);
            
$mail->addTo($email$email);
            echo 
"$email<br />
            <pre>"
;
            
print_r($e);
            echo 
"</pre>";
        }
        
$mail->addTo('mail@hotmail.com''mymail');
        
// Setting mail subject
        
$mail->setSubject($row['name']);
        
// Sending mail
        
$setLoggetQuery mysql_query("UPDATE newsletter SET logget='1' WHERE newsletterId='".$row['newsletterId']."'");
        if(!
$setLoggetQuery) { echo "<span>Fejl!Nyhedsbrev blev ikke sendt.</span>"; }
        else {
            
$mail->send($transport);
            echo 
'Mail was sent successfully.';
        }
    } 
and i know for sure that the print_r i call for final query, shows the proper addresses, it just fails to add them one by one with addTo

pls help needed

     


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

  Posting Rules  
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump:
 
  Contains New Posts Forum Contains New Posts   Contains No New Posts Forum Contains No New Posts   A Closed Forum Forum is Closed