I get the feeling that nobody is reading these postings anymore.
I am stumped and have never resolved this problem. I have made the following change to all templates and am using the Default template for this troubleshooting. I have even looked at the orgiginal file in a fresh download and can't see why this is happening.
I have modified the mail_usernamepassword.tpl file so that it will reflect the mail server and other local information. The following is what I have. Everything works except the section for taking the survey doesn't display. I see that it depends on $user.take_priv. I am just assigning one person to the survey and giving them the ability to edit and view the results. I then send the login information from the Access Control page.
Why doesn't the section on Taking the Survey display in the email?
To: {$user.email}
Subject: Login information for eSurvey
From: whoever@wherever.com
<!-- HEADER SEPERATOR - DO NOT REMOVE -->
Hello {$user.name}. This email will provide you with the username
and password required to access a survey on our site. Please keep this message or bookmark the links below.
Survey: {$survey.name}
Username: {$user.username}
Password: {$user.password}
{section name="edit" loop=1 show=$user.edit_priv}
To build or edit this survey:
{$survey.edit_url}
{/section}
{section name="results" loop=1 show=$user.results_priv}
To view the results of this survey:
{$survey.results_url}
{/section}
{section name="take" loop=1 show=$user.take_priv}
To take the survey, visit the following URL:
{$survey.take_url}
{/section}