2 users online. Create an account or sign in to join them.Users
Register Email not being Sent.
This is an open discussion with 2 replies, filed under Troubleshooting.
Search
Does {website-owner/author[@id = 2]/username} return a valid username?
Damn it. Fixed it myself. I hadn’t attached the website-owner ds to the success page. Have done now, and it now works.
Create an account or sign in to comment.
Hi,
I installed this extension for a client:
Front End Authentication
It was all going well, and then the client reported that they were not receiving emails to tell them that someone had registered.
This is the form, can anyone see anything wrong with it?
<form method="post" action="" class="generalForm" enctype="multipart/form-data"> <small>* Indicates a required field</small> <fieldset> <input name="MAX_FILE_SIZE" type="hidden" value="5242880" /> <label><span>Username *</span> <input name="fields[username]" type="text" /> </label> <label><span>Password *</span> <input name="fields[password]" type="text" /> </label> <label><span>Full Name *</span> <input name="fields[full-name]" type="text" /> </label> <label><span>Email *</span> <input name="fields[email]" type="text" /> </label> <label><span>Telephone *</span> <input name="fields[telephone]" type="text" /> </label> <label><span>Profession *</span> <select name="fields[department][]"> <option value="">Please Select</option> <xsl:for-each select="member-profession/entry"> <option value="{profession/@handle}"><xsl:value-of select="profession"/></option> </xsl:for-each> </select> </label> <label><span>Company Name *</span> <input name="fields[company-name]" type="text" /> </label> <input name="send-email[from]" value="fields[email]" type="hidden" /> <input name="send-email[subject]" value="New Registration" type="hidden" /> <input name="send-email[body]" value="Someone has applied for membership of the RAME site, please click the link and check the box to approve them." type="hidden" /> <input name="send-email[recipient]" value="{website-owner/author[@id = 2]/username}" type="hidden" /> <input name="action[register-member]" type="submit" value="Submit" class="button"/> <input name="redirect" type="hidden" value="http://www.regupolacousticsmiddleeast.com/success/" /> </fieldset> </form>