Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
Not sure about the spacing, since the On Error line seemed to be out of sequence or something. – Jared Farrish Jun 18 '11 at 0:41
No I forgot to add it into the code it is just says <code>Etrap: MsgBox Err.Description Exit Sub</code> however this is not my problem the problem i am having is move the message that this code makes to outlook and sending it away – AquaCash5 Jun 20 '11 at 17:23

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.