Answers for "how to iterate map in apex salesforce"

0

how to iterate map in apex salesforce

for(Id id: mapname.keyset()){
    Set<String> stringset= mapname.get(id);
    for(String a: stringset){
         sendMail(a);
   }
Posted by: Guest on April-27-2020

Code answers related to "how to iterate map in apex salesforce"

Browse Popular Code Answers by Language