Private Sub Label1_Click()
Range("A1").Select
With ActiveSheet
.Hyperlinks.Add Anchor:=Selection, Address:="mailto:toru.tanaka@nifty.com"
.Hyperlinks(1).Follow NewWindow:=True
End With
Range("A1").ClearContents
End Sub
Private Sub Label1_Click()
With Worksheets.Add
.Range("A1").Select
.Hyperlinks.Add Anchor:=Selection, Address:="mailto:toru.tanaka@abcd.xyz"
.Hyperlinks(1).Follow NewWindow:=True
.Range("A1").ClearContents
Application.DisplayAlerts = False
.Delete
Application.DisplayAlerts = True
End With
End Sub