Explorar el Código

Mail fix

master
30117125 hace 4 años
padre
commit
27f4873eb6

+ 5
- 5
UnivateProperties_API/Repository/Communication/MailRepository.cs Ver fichero

@@ -53,7 +53,7 @@ namespace UnivateProperties_API.Repository.Communication
53 53
             int emailCount = 0;
54 54
             foreach (var recipient in recipients)
55 55
             {
56
-                toList += recipient.RecipientMail + ";, ";
56
+                toList += recipient.RecipientMail + ", ";
57 57
                 emailCount++;
58 58
             }
59 59
 
@@ -104,7 +104,7 @@ namespace UnivateProperties_API.Repository.Communication
104 104
             int emailCount = 0;
105 105
             foreach (var recipient in recipients)
106 106
             {
107
-                toList += recipient.RecipientMail + ";, ";
107
+                toList += recipient.RecipientMail + ", ";
108 108
                 emailCount++;
109 109
             }
110 110
 
@@ -191,7 +191,7 @@ namespace UnivateProperties_API.Repository.Communication
191 191
             int emailCount = 0;
192 192
             foreach (var recipient in recipients)
193 193
             {
194
-                toList += recipient.RecipientMail + ";, ";
194
+                toList += recipient.RecipientMail + ", ";
195 195
                 emailCount++;
196 196
             }
197 197
 
@@ -281,7 +281,7 @@ namespace UnivateProperties_API.Repository.Communication
281 281
             int emailCount = 0;
282 282
             foreach (var recipient in recipients)
283 283
             {
284
-                toList += recipient.RecipientMail + ";, ";
284
+                toList += recipient.RecipientMail + ", ";
285 285
                 emailCount++;
286 286
             }
287 287
 
@@ -327,7 +327,7 @@ namespace UnivateProperties_API.Repository.Communication
327 327
             int emailCount = 0;
328 328
             foreach (var recipient in recipients)
329 329
             {
330
-                toList += recipient.RecipientMail + ";, ";
330
+                toList += recipient.RecipientMail + ", ";
331 331
                 emailCount++;
332 332
             }
333 333
 

Loading…
Cancelar
Guardar