I have an excel file that can write a cdo email to a file on my network, however I have no idea and have had no luck finding a way to import that into outlook (which is running on another computer) and sending it away through the outbox.
Sub EmailSheet()
On Error GoTo Etrap
If Range("C9") = "" Then
MsgBox "Please check the Company Name", vbInformation
Exit Sub
End If
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:= _
"W:\PDF's\" & Range("C9") & ".pdf", Quality _
:=xlQualityStandard, IncludeDocProperties:=True, IgnorePrintAreas:=False, _
OpenAfterPublish:=False
Dim cdoMessage
Set cdoMessage = CreateObject("CDO.Message")
With cdoMessage.Configuration.Fields
.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 1
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverpickupdirectory") = "W:\pickUp"
.Update
End With
With cdoMessage
.To = Range("C15").Value ' E-mail Cell
.From = """Example"" <example@example.com>"
.Subject = "Test"
.AddAttachment "W:\PDF's\" & Range("C9") & ".pdf"
.send
End With
I have tried this setup with
.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
'send using smtp server
and the gmail smtp information instead of a pickup directory and it works, but the emails need to be from my boss and gmail will only let the from address to be from the gmail account.
I have tried to contact the person in charge of the Microsoft exchange server but he has not gotten back to me and has thus far been pretty unreliable when I try to contact him. So I have given up on the smtp relay version of this.
On Errorline seemed to be out of sequence or something. – Jared Farrish Jun 18 '11 at 0:41