diff --git a/src/app/form/form.component.html b/src/app/form/form.component.html
index e060ad046b1a33872c09259ba4e8b73ee710fc50..c32ffbbf97b63d00cee3e7948b84e1149ef5e4e2 100644
--- a/src/app/form/form.component.html
+++ b/src/app/form/form.component.html
@@ -1075,15 +1075,17 @@
         (checkEvent)="acceptDataBeSaved($event)"
       >
       </app-checkbox-form>
-      <div class="title">
-        <h3>Acceptez-vous de recevoir des mails d'informations de la part de Res'in ?</h3>
+      <div *ngIf="!profile">
+        <div class="title">
+          <h3>Acceptez-vous de recevoir des mails d'informations de la part de Res'in ?</h3>
+        </div>
+        <app-checkbox-form
+          [isChecked]="userAcceptNewsletter"
+          [text]="'J\'accepte'"
+          (checkEvent)="acceptReceiveNewsletter($event)"
+        >
+        </app-checkbox-form>
       </div>
-      <app-checkbox-form
-        [isChecked]="userAcceptNewsletter"
-        [text]="'J\'accepte'"
-        (checkEvent)="acceptReceiveNewsletter($event)"
-      >
-      </app-checkbox-form>
       <p class="informationEndForm">
         <span class="asterisk">*</span> Les informations recueillies sont enregistrées dans un fichier par la Métropole
         de Lyon en vue de l'animation du réseau des acteurs de la médiation numérique. Elles sont conservées pendant 24
diff --git a/src/app/form/form.component.ts b/src/app/form/form.component.ts
index 7748c87b60cb26e711c43256cec12690efdee723..4e25894a4e60eb20b563a266004cd3801d1c3481 100644
--- a/src/app/form/form.component.ts
+++ b/src/app/form/form.component.ts
@@ -848,9 +848,6 @@ export class FormComponent implements OnInit {
           user = this.profile;
           structure.accountVerified = true;
           this.createStructure(structure, user);
-          if (this.userAcceptNewsletter) {
-            this.newsletterService.newsletterSubscribe(user.email).subscribe(() => {});
-          }
         } else {
           if (this.accountForm.valid) {
             user = new User(this.accountForm.value);