2017-03-29 163 views
-2

我有下面的代码,通过从我的Excel工作表中获取数据发送Outlook电子邮件。VBA宏观outlook生成电子邮件

只要点击按钮以允许访问我的电子邮件,就会自动发送此电子邮件。

我想改变这个,以便生成电子邮件,并且在发送之前我必须在每封电子邮件上实际按下发送。

是否有人可以帮助,我怎么需要改变的代码要做到这一点,下面的代码,

Sub Mail_Selection_Range_Outlook_Body() 
'For Tips see: http://www.rondebruin.nl/win/winmail/Outlook/tips.htm 
'Don't forget to copy the function RangetoHTML in the module. 
'Working in Excel 2000-2016 
    Dim rng As Range 
    Dim OutApp As Object 
    Dim OutMail As Object 
    Dim cell As Range 
    Dim StrBody As String 

    Set rng = Nothing 
    On Error Resume Next 
    'Only the visible cells in the selection 
    Set rng = Selection.SpecialCells(xlCellTypeVisible) 
    'You can also use a fixed range if you want 
    Set rng = Range("ZCCollar").SpecialCells(xlCellTypeVisible) 

    On Error GoTo 0 

    If rng Is Nothing Then 
     MsgBox "The selection is not a range or the sheet is protected" & _ 
       vbNewLine & "please correct and try again.", vbOKOnly 
     Exit Sub 
    End If 

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


    StrBody = Sheets("MailInfo").Range("E1").Value & "<br><br>" & _ 
       Sheets("MailInfo").Range("E2").Value & "<br>" & _ 
       Sheets("MailInfo").Range("E3").Value 

    Set OutApp = CreateObject("Outlook.Application") 

On Error Resume Next 
For Each cell In Sheets("MailInfo").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 = "Index Option RFQ" 


      .HTMLBody = StrBody & RangetoHTML(rng) & "<br>" & "Thanks" 



      'You can add files also like this 
      '.Attachments.Add ("C:\test.txt") 
      .Send 'Or use Display 
     End With 
     On Error GoTo 0 
     Set OutMail = Nothing 
    End If 
Next cell 








    With Application 
     .EnableEvents = True 
     .ScreenUpdating = True 
    End With 

    Set OutMail = Nothing 
    Set OutApp = Nothing 
End Sub 


Function RangetoHTML(rng As Range) 
' Changed by Ron de Bruin 28-Oct-2006 
' Working in Office 2000-2016 
    Dim fso As Object 
    Dim ts As Object 
    Dim TempFile As String 
    Dim TempWB As Workbook 

    TempFile = Environ$("temp") & "\" & Format(Now, "dd-mm-yy h-mm-ss") & ".htm" 

    'Copy the range and create a new workbook to past the data in 
    rng.Copy 
    Set TempWB = Workbooks.Add(1) 
    With TempWB.Sheets(1) 
     .Cells(1).PasteSpecial Paste:=8 
     .Cells(1).PasteSpecial xlPasteValues, , False, False 
     .Cells(1).PasteSpecial xlPasteFormats, , False, False 
     .Cells(1).Select 
     Application.CutCopyMode = False 
     On Error Resume Next 
     .DrawingObjects.Visible = True 
     .DrawingObjects.Delete 
     On Error GoTo 0 
    End With 

    'Publish the sheet to a htm file 
    With TempWB.PublishObjects.Add(_ 
     SourceType:=xlSourceRange, _ 
     Filename:=TempFile, _ 
     Sheet:=TempWB.Sheets(1).Name, _ 
     Source:=TempWB.Sheets(1).UsedRange.Address, _ 
     HtmlType:=xlHtmlStatic) 
     .Publish (True) 
    End With 

    'Read all data from the htm file into RangetoHTML 
    Set fso = CreateObject("Scripting.FileSystemObject") 
    Set ts = fso.GetFile(TempFile).OpenAsTextStream(1, -2) 
    RangetoHTML = ts.readall 
    ts.Close 
    RangetoHTML = Replace(RangetoHTML, "align=center x:publishsource=", _ 
          "align=left x:publishsource=") 

    'Close TempWB 
    TempWB.Close savechanges:=False 

    'Delete the htm file we used in this function 
    Kill TempFile 

    Set ts = Nothing 
    Set fso = Nothing 
    Set TempWB = Nothing 
End Function 
+2

'。发送“或使用Display' ??? – 0m3r

+2

@ 0m3r:现代程序员的态度:简单地使用c&p代码,尝试它并在“它有效”的情况下得到满足,但绝不会花费一些时间来试图理解它是如何工作的。 –

+0

感谢您的帮助,对不起! – gekko2670

回答

-1

变化

.Send

.Display

里面的With OutMail块。

这样的电子邮件,将会产生显示,但不发送,等待着你去点击发送

+0

感谢您的帮助 – gekko2670

相关问题