I wanna subscribe my website newsletter members to my Google Group automatically.

I try send email to mygroupname+subscribe@googlegroups.com with subject & body "subscribe" by PHP Mail function from user email. but not any result and subscription resquest in my group.

  $phpMailSender = new PHPMailer();
  $phpMailSender->CharSet = "UTF-8";

  foreach($users as $user) {
        $phpMailSender->ClearAddresses();

        $phpMailSender->From = $user['email'];
        $phpMailSender->FromName = $user['email'];
        $phpMailSender->AddReplyTo($user['email']);

        $phpMailSender->addAddress('mygroupname+subscribe@googlegroups.com');

        $phpMailSender->Subject = 'subscribe';
        $phpMailSender->Body = 'subscribe';
        $result = $phpMailSender->send();

        if($result)
                echo "Subscription email Sent for user# " . $user['email'] . "\n";
        else
                echo "Subscription email failed for user# " . $user['email'] . "\n";

        ob_flush();
        flush();
  }

Can any one help me!

link|improve this question
Questions end with a question mark.. Are you sure the mail is beeing sent? Can you provide some code? – halfdan Sep 12 '10 at 15:14
Please show some code. – Pekka Sep 12 '10 at 15:16
some code add to my question guys;) – Akbar Sep 12 '10 at 15:49
@Akbar did you ever figure out how to add a user via email? – helgatheviking Feb 23 at 23:39
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.