diff --git a/htdocs/adherents/card_subscriptions.php b/htdocs/adherents/card_subscriptions.php
index 4d0420aea84..e0a5c6680d4 100644
--- a/htdocs/adherents/card_subscriptions.php
+++ b/htdocs/adherents/card_subscriptions.php
@@ -474,7 +474,7 @@ if ($action == 'addsubscription' && $user->rights->adherent->cotisation->creer)
}
else
{
- $s1='global->ADHERENT_MAIL_COTIS?' checked="true"':'').'>';
+ $s1='global->ADHERENT_DEFAULT_SENDINFOBYMAIL?' checked="true"':'').'>';
$s2=$langs->trans("MailFrom").': '.$conf->global->ADHERENT_MAIL_FROM.'
';
$s2.=$langs->trans("MailRecipient").': '.$adh->email.'';
//$s2.='
'.$langs->trans("Content").': '.nl2br($conf->global->ADHERENT_MAIL_COTIS);
diff --git a/htdocs/adherents/fiche.php b/htdocs/adherents/fiche.php
index f4e7575cef1..2393de6ab00 100644
--- a/htdocs/adherents/fiche.php
+++ b/htdocs/adherents/fiche.php
@@ -846,9 +846,14 @@ if ($rowid && $action != 'edit')
// Confirmation de la Resiliation
if ($action == 'resign')
{
- // Cree un tableau formulaire
+ $langs->load("mails");
+
+ // Cree un tableau formulaire
$formquestion=array();
- if ($adh->email) $formquestion[0]=array('type' => 'checkbox', 'name' => 'send_mail', 'label' => $langs->trans("SendAnEMailToMember",$adh->email), 'value' => 'false');
+ $label=$langs->trans("SendAnEMailToMember").' ('.$langs->trans("MailFrom").': '.$conf->global->ADHERENT_MAIL_FROM.', ';
+ $label.=$langs->trans("MailRecipient").': '.$adh->email.'';
+ $label.=')';
+ if ($adh->email) $formquestion[0]=array('type' => 'checkbox', 'name' => 'send_mail', 'label' => $label, 'value' => ($conf->global->ADHERENT_DEFAULT_SENDINFOBYMAIL?'true':'false'));
$html->form_confirm("fiche.php?rowid=$rowid",$langs->trans("ResiliateMember"),$langs->trans("ConfirmResiliateMember"),"confirm_resign",$formquestion);
print '
';
diff --git a/htdocs/admin/adherent.php b/htdocs/admin/adherent.php
index 6dd5592dcaa..bce46ac5ed9 100644
--- a/htdocs/admin/adherent.php
+++ b/htdocs/admin/adherent.php
@@ -94,7 +94,7 @@ print "\n";
$var=true;
$form = new Form($db);
-// Mail obligatoire
+// Mail required for members
$var=!$var;
print '