2007年11月21日水曜日

codeigniter mailing list hint

http://codeigniter.com/forums/viewthread/47669/

2007年11月18日日曜日

PHP 連想配列 ハッシュ 追加

http://www.gac.jp/article/index.php?stats=question&category=11&id=1540&command=msg

2007年11月17日土曜日

quick silver 

http://theappleblog.com/quicksilver-the-guide/

swiftmailer

http://www.swiftmailer.org/

ci sift mailer

http://www.4webby.com/freakauth/tutorials/ci-swift-mailer

foreach ($list->result() as $address) {

    $this->email->clear();

    $this->email->to($address->email);

    $this->email->from($this->config->item('admin_email'), 'Name');

    $this->email->subject('Newsletter for ' . date ("F jS, Y"));

    $this->email->message($this->load->view('newsletter/daily_newsletter', $data, true));

    $email_sent = $this->email->send();



// this is assigned to a var rather then just

// if ($this->email->send()) because I needed to manually

// toggle that back and forth, and it just seemed easier



    if ($email_sent) {

        $this->user_model->update_sent_issue($address->email, $issueNumber);

        $output .= '
  • ' . $address->email . '
  • ';
        } else {

            $output .= '
  • Could not send to ' . $address->email . '
  • ';
        }

    codeigniter mailループ

    http://codeigniter.com/forums/viewthread/47669/

    2007年11月13日火曜日

    アンドロイド開発キットDL

    http://code.google.com/android/download.html

    2007年11月9日金曜日

    codeigniterでRSS生成

    http://www.derekallard.com/blog/post/building-an-rss-feed-in-code-igniter/