Em nhờ các bác sửa đoạn code gửi mail có attach file

Liên hệ QC

trungtuanthanh

Thành viên mới
Tham gia
23/12/08
Bài viết
15
Được thích
3
Em có đoạn code gửi mail trong excel sau:

Bước 1: Mở excel -> new một tài liệu mới. sau đó vào view-> toolbars -> Visual Basic

Bước 2: Add một button vào sheet (số 2 bên hình)

Bước 3 Click kép vào button sẽ hiện ra cửa sổ soạn thảo code VBA. Bạn viết vào đoạn code sau:
Private Sub CommandButton1_Click()
Dim DistList As Variant
Dim subj As Variant
Dim d As Date
d = Date
subj = "Báo cáo ngày: " & d
DistList = Array("abc@gmail.com", "abc....@gmail.com", "abc...@gmail.com")
ActiveWorkbook.SendMail Recipients:=DistList, Subject:=subj
End Sub

Đoạn code trên khi gửi mail nó sẽ attach file excel đấy vào mail. Mà em lại cần gửi riêng sheet lên mail luôn như hình đính kèm mà không biết sửa đoạn code trên.

Cảm ơn các Bác trước.
 

File đính kèm

  • 2.JPG
    2.JPG
    114.6 KB · Đọc: 57
Bạn nghiên cứu đoạn code sau đây xem sao:
(Nguồn: http://bytes.com/topic/access/answers/768163-send-attached-excel-sheet-varied-email-addresses)
[highlight=vb]Sub Mail_ActiveSheet()
'Working in 97-2007
Dim FileExtStr As String
Dim FileFormatNum As Long
Dim Sourcewb As Workbook
Dim Destwb As Workbook
Dim TempFilePath As String
Dim TempFileName As String

With Application
.ScreenUpdating = False
.EnableEvents = False
End With

Set Sourcewb = ActiveWorkbook

'Copy the sheet to a new workbook/
Sheets("Sheet2").Copy
Set Destwb = ActiveWorkbook

'Determine the Excel version and file extension/format
With Destwb
If Val(Application.Version) < 12 Then
'You use Excel 97-2003
FileExtStr = ".xls": FileFormatNum = -4143
Else
'You use Excel 2007
'We exit the sub when your answer is NO in the security dialog that you only
'see when you copy a sheet from a xlsm file with macro's disabled.
If Sourcewb.Name = .Name Then
With Application
.ScreenUpdating = True
.EnableEvents = True
End With
MsgBox "Your answer is NO in the security dialog"
Exit Sub
Else
Select Case Sourcewb.FileFormat
Case 51: FileExtStr = ".xlsx": FileFormatNum = 51
Case 52:
If .HasVBProject Then
FileExtStr = ".xlsm": FileFormatNum = 52
Else
FileExtStr = ".xlsx": FileFormatNum = 51
End If
Case 56: FileExtStr = ".xls": FileFormatNum = 56
Case Else: FileExtStr = ".xlsb": FileFormatNum = 50
End Select
End If
End If
End With

'Change all cells in the worksheet to values if you want
' With Destwb.Sheets(1).UsedRange
' .Cells.Copy
' .Cells.PasteSpecial xlPasteValues
' .Cells(1).Select
' End With
' Application.CutCopyMode = False

'Save the new workbook/Mail it/Delete it
TempFilePath = Environ$("temp") & "\"
TempFileName = "Headcount " & Format(Now, "dd-mmm-yy h-mm-ss")

With Destwb
.SaveAs TempFilePath & TempFileName & FileExtStr, FileFormat:=FileFormatNum
On Error Resume Next
.SendMail "mrqwe@hotmails.com", _
"Headcount&Turnover"
On Error GoTo 0
.Close SaveChanges:=False
End With

'Delete the file you have send
Kill TempFilePath & TempFileName & FileExtStr

With Application
.ScreenUpdating = True
.EnableEvents = True
End With
End Sub
[/highlight]
 
Lần chỉnh sửa cuối:
Upvote 0
Em chạy thử rồi nhưng không được bác ah. Không thấy nó báo lỗi nhưng cũng không thấy được kết quả.
 
Upvote 0
Web KT

Bài viết mới nhất

Back
Top Bottom