diff --git a/fonctions.php b/fonctions.php
index 99ea6418d5ab86ab46e79c5864f3e5fe1e22c89c..059d6391dd8ddd3553e2c32964cb30df2892f57d 100644
--- a/fonctions.php
+++ b/fonctions.php
@@ -172,10 +172,10 @@ function sendEmail( $to, $subject, $body, $headers, $param)
   $subject = mb_encode_mimeheader( html_entity_decode( $subject, ENT_QUOTES, 'UTF-8' ), "UTF-8", "B", "\n", 9 ) ;
 
   $encoded_app = mb_encode_mimeheader( NOMAPPLICATION, "UTF-8", "B", "\n", 6 ) ;
-  $size_encoded_app = strlen( $encoded_app ) % 75 ;
+  $size_encoded_app = ( 6 + strlen( $encoded_app ) ) % 75 ;
   $size_admin_email = strlen( ADRESSEMAILADMIN ) ;
 
-  if ( $size_encoded_app + $size_admin_email + 9 > 74 ) {
+  if ( ( $size_encoded_app + $size_admin_email + 9 ) > 74 ) {
     $folding = "\n" ;
   } else {
     $folding = "" ;