@@ -24,7 +24,11 @@ const myEmailAddress = myAccount.recipientId.includes('@')
2424const enterpriseDomain = myAccount . recipientId . split ( '@' ) [ 1 ] ;
2525
2626const formAppSign = ( ) => {
27- return `<br/><i style="font-size: 12px;">${ string . criptextSignature . sent_with } <span style="color: #0091ff; text-decoration: none;">Criptext</span> ${ string . criptextSignature . secure_email } </i>` ;
27+ return `<br/><i style="font-size: 12px;">${
28+ string . criptextSignature . sent_with
29+ } <span style="color: #0091ff; text-decoration: none;">Criptext</span> ${
30+ string . criptextSignature . secure_email
31+ } </i>`;
2832} ;
2933
3034const getRecipientsWithDomain = ( recipients , type ) => {
@@ -254,8 +258,8 @@ export const formDataToReply = async (emailKeyToEdit, replyType) => {
254258 const from = emailData . replyTo
255259 ? parseContactRow ( emailData . replyTo )
256260 : emailFrom . name
257- ? emailFrom
258- : contacts . from [ 0 ] ;
261+ ? emailFrom
262+ : contacts . from [ 0 ] ;
259263
260264 const content = formReplyForwardContent (
261265 replyType ,
@@ -292,10 +296,11 @@ export const formDataToReply = async (emailKeyToEdit, replyType) => {
292296} ;
293297
294298const formToEmails = ( from , to , replyType , myEmailAddress ) => {
295- const [ isFromMe ] = from . map ( contact =>
296- contact . email
297- ? contact . email === myEmailAddress
298- : contact === myEmailAddress
299+ const [ isFromMe ] = from . map (
300+ contact =>
301+ contact . email
302+ ? contact . email === myEmailAddress
303+ : contact === myEmailAddress
299304 ) ;
300305 if (
301306 replyType === composerEvents . REPLY ||
0 commit comments