I believe I am experiencing a simple syntax problem. I have been using the code below without error…
MailList = Range("EmailedResponseList").Value SubjectLine = "Resolved PBN " & Range("PBN_Display") & ", please note" success = Application.Dialogs(xlDialogSendMail).Show([MailList], [SubjectLine])
…and in every case the variable MailList is a single email address, but I now need to also send to a second email address – resolvedpolarbear@mycompany.com. Everything I have tried to concatenate, add or some other way include resolvedpolarbear@mycompany.com has failed.
I have reviewed the other postings here regarding xlDialogSendMail, but these appear either more complicated than I can figure out and/or more elaborate than my need to simply have more than one recipient.
Thanks!