我是VBA中的新成員。我想問一下如何觸發已回覆的郵件。從已回覆的電子郵件中自動觸發
情景:我有這個編碼如下這將電子郵件發送至接收方(列B)如果是「是」,在C列
For Each cell In Columns("B").Cells.SpecialCells(xlCellTypeConstants)
If cell.Value Like "?*@?*.?*" And _
LCase(Cells(cell.Row, "C").Value) = "yes" Then
Set OutMail = OutApp.CreateItem(0)
On Error Resume Next
With OutMail
.To = cell.Value
.Subject = "Reminder"
.Body = "Dear " & Cells(cell.Row, "A").Value _
& vbNewLine & vbNewLine & _
"Please contact us to discuss bringing " & _
"your account up to date"
'You can add files also like this
'.Attachments.Add ("C:\test.txt")
.Send 'Or use Display
End With
問:我怎樣才能觸發如果收件人已回覆我之前寄給我的電子郵件?我想將觸發器自動化到列E上的excel文件,因爲備註收件人已回覆我的電子郵件。例如,「回覆/無回覆」。
因爲我是VBA的新人,對於任何幫助都非常感謝。 謝謝。