さまざまなグループの人々に電子メールを送信するために、Excelフォームにいくつかのボタンを設定しようとしています。
メールアドレスを一覧表示するために、別のワークシートにいくつかの範囲のセルを作成しました。
たとえば、「ボタンA」でOutlookを開き、「ワークシートB:セルD3-D6」の電子メールアドレスのリストを配置します。次に、Outlookで[送信]をクリックするだけです。
Sub Mail_workbook_Outlook_1()
'Working in 2000-2010
'This example send the last saved version of the Activeworkbook
Dim OutApp As Object
Dim OutMail As Object
EmailTo = Worksheets("Selections").Range("D3:D6")
Set OutApp = CreateObject("Outlook.Application")
Set OutMail = OutApp.CreateItem(0)
On Error Resume Next
With OutMail
.To = EmailTo
.CC = "person1@email.com;person2@email.com"
.BCC = ""
.Subject = "RMA #" & Worksheets("RMA").Range("E1")
.Body = "Attached to this email is RMA #" & Worksheets("RMA").Range("E1") & ". Please follow the instructions for your department included in this form."
.Attachments.Add ActiveWorkbook.FullName
'You can add other files also like this
'.Attachments.Add ("C:\test.txt")
.Display
End With
On Error Goto 0
Set OutMail = Nothing
Set OutApp = Nothing
End Sub