My club uses Google Groups as the email list manager. The standard way to subscribe is to send an email from the address the person wishes to subscribe with, to an address :
[email]GROUPNAME-subscribe@googlegroups.com[/email]
Subject doesn't matter, content doesn't matter.
I set the form to Yes to send email, and put this code in the Before Sending Email form code
I played around with this line too, but I think if I use this, I need to turn off email:
Reason I'm asking is I'm lazy, I'm not a programmer, and I hope someone can shortcut this whole thing for me. I'm not exactly sure how the mosMail thing works, nor the $_POST. Thanks in advance.
PS - I actually had it work one time, but Google delayed the confirmation email, I made changes thinking it didn't work, and never knew which changes I made actually worked!
[email]GROUPNAME-subscribe@googlegroups.com[/email]
Subject doesn't matter, content doesn't matter.
I set the form to Yes to send email, and put this code in the Before Sending Email form code
$_POST['from'] = $_POST['youremail'];
$_POST['recipient'] = $_POST['groupname']."-subscribe@googlegroups.com";
I played around with this line too, but I think if I use this, I need to turn off email:
mosMail($from, $fromname, $recipient, $subject, $html_message, true, NULL, NULL, NULL, NULL, NULL );
Reason I'm asking is I'm lazy, I'm not a programmer, and I hope someone can shortcut this whole thing for me. I'm not exactly sure how the mosMail thing works, nor the $_POST. Thanks in advance.
PS - I actually had it work one time, but Google delayed the confirmation email, I made changes thinking it didn't work, and never knew which changes I made actually worked!