如何使用RXJS 將網頁內容(包含表格和一個以上的圖檔)轉換成Email內容

以下可以將網頁內容:包含表格和一個圖檔)轉換成Email內容, 請問若有一個以上的圖檔, 該如何修改? 謝謝
this.exportSub=combineLatest(
this.getGrid$,
this.getChart$,
).pipe(
delay(800),
map(()=>[
(this.summaryElement.nativeElement as HTMLelement.innerHTML.replace(’[object object],[object Object’,’’),
(this.devElement.nativeElement as HTMLelement.innerHTML.replace(’[object object],[object Object’,’’)]),
switchMap(html=> from (this.barChart.exportImage(width: 1200, height: 600}),
).pipe(
concatMap(dataURI => this.http.get(dataURI, {responseType: ‘blob’}),
concatMap(blob=>this.service.sendmail([new File([blob],’’)],html,[’’]))
)).subscribe