How to automatically subscribe a user to an AWeber list when they register in the Joomla enabled site for free and without any extension
After integrating AWeber with vBulletin and phpBB, now let’s do it for Free Joomla.
Joomla notifies admin when a new user registers.
So, create a dummy administrator with listname@aweber.com as the email. So when a user registers on the site, the email is sent to AWeber. Now let’s create an email parser to add the user’s details to the AWeber list.
Pretty simple. So, let’s begin.
AWeber Custom Parser for Joomla Emails
We now need to create a parser in AWeber to parse data from Joomla. Setup the following Custom Parser in AWeber.
- Trigger rule should be your webmasters from the address in your Joomla and this is tested in Headers.
From:[^\n|.]+SomeName\@domain\.com
- Rule 1 to get an email address from the sent email headers.
\n[>\s]*E-mail:\s+(.+?)\n
- Rule 2 to get the username from Joomla as the name in Aweber.
\n[>\s]*Username:\s+(.+?)\n
Enjoy.