The following code worked well with just one recipient:
ActiveWorkbook.SendMail Recipients:="name.surname@...",
Subject:="File: " & Export_File_Name
Adding a second recipient kills it, though. I am not able to figure out
the correct format. I have tried:
ActiveWorkbook.SendMail Recipients:="name.surname@..." & ";"
& "name2.surname2@...", Subject:="File: " & Export_File_Name
And also
ActiveWorkbook.SendMail Recipients:="name.surname@...;
name2.surname2@...", Subject:="File: " & Export_File_Name
Thanks in advance for your help.