@MailSend & Multi Value Dialog List field

Hi, I am attempting to do a @MailSend from a form I’ve created and have as part of the subject body the value in a dialog list field. It works perfectly when I have only one value selected for that field. When I select two, it only shows the first value in the email that is sent. Anyone have any ideas? Is it a limitation to using the @Mailsend command or perhaps something with my code?The field in question is MemoSubject

@MailSend(SendTo;CC;“”;Subject+" “+Form+” “+Number;@NewLine+InsuredName+” “+Form+” “+Number+” “+EffectiveDate+” to “+EndDate+@NewLine+@NewLine+LetterBody+” "+MemoSubject+@NewLine+@NewLine+Body+@NewLine+@NewLine+Signature;[Sign];[PriorityHigh])

Subject: @MailSend & Multi Value Dialog List field

If you use a multivalue “straight”, you are actually creating multiple subjects, only one of which will be displayed. Use @Implode (with an appropriate separator) on the multivalue to collapse it into a single string before adding the other components to it.