新しいシートを追加し、シート名をメールに変更します。

送信するすべてのメールは3列を使用します。

。列Aに-送信する1つまたは複数のシート名を入力します。

。列Bに-電子メールアドレスを入力します。

。列C-件名は電子メールメッセージの上部に表示されます。

列A:Cは最初のメールの情報を入力し、列D:Fを2番目のメールに使用できます。

この方法で85の異なる電子メールを送信できます(85 * 3 = 255列)。

Sub Mail_sheets()

Dim MyArr As Variant

Dim last As Long

Dim shname As Long

Dim a As Integer

Dim Arr() As String

Dim N As Integer

Dim strdate As String

For a = 1 To 253 Step 3

If ThisWorkbook.Sheets("mail").Cells(1, a).Value = "" Then Exit Sub

Application.ScreenUpdating = False

last = ThisWorkbook.Sheets("mail").Cells(Rows.Count, a).End(xlUp).Row

N = 0

For shname = 1 To last

N = N + 1

ReDim Preserve Arr(1 To N)

Arr(N) = ThisWorkbook.Sheets("mail").Cells(shname, a).Value

Next shname

ThisWorkbook.Worksheets(Arr).Copy

strdate = Format(Date, "dd-mm-yy") & " " & Format(Time, "h-mm-ss")

ActiveWorkbook.SaveAs "Part of " & ThisWorkbook.Name _

& " " & strdate & ".xls"

With ThisWorkbook.Sheets("mail")

MyArr = .Range(.Cells(1, a + 1), .Cells(Rows.Count, a + 1).End(xlUp))

End With

ActiveWorkbook.SendMail MyArr, ThisWorkbook.Sheets("mail").Cells(1, a + 2).Value

ActiveWorkbook.ChangeFileAccess xlReadOnly

Kill ActiveWorkbook.FullName

ActiveWorkbook.Close False

Application.ScreenUpdating = True

Next a

End Sub