gửi email có Reminder bằng VBA

Liên hệ QC
Tôi tuân thủ nội quy khi đăng bài

sampn1

Thành viên mới
Tham gia
23/3/23
Bài viết
2
Được thích
0
Em viết code VBA gửi email bằng excel được rồi nhưng không biết add Reminder cho email kiểu gì, nhờ các bác hỗ trợ câu lệnh ạ

Sub guiemal() Dim outapp As Object Dim outmail As Object Set outapp = CreateObject("Outlook.Application") Set outmail = outapp.CreateItem(olMailItem) On Error Resume Next With outmail .Display .To = "........@gmail.com" .CC = "" .Subject = "test reminder" .htmlBody = "test reminder body" .send End With On Error GoTo 0 Set outapp = Nothing Set outmail = Nothing End Sub
 
Web KT
Back
Top Bottom