+ Reply to Thread
Results 1 to 4 of 4

Help: XL & Outlook

  1. #1
    Forum Contributor
    Join Date
    01-19-2006
    Posts
    142

    Question Help: XL & Outlook

    Hi all,

    I've created a Sub to send an email from excel as shown;

    Please Login or Register  to view this content.
    I need to find out how I can determine whether or not the email had actually been sent or not.

    Any help appreciated! TIA

  2. #2
    Ivan Raiminius
    Guest

    Re: Help: XL & Outlook

    Hi,

    Sub SendAnEmailWithOutlook(CurrFile)

    Dim olApp As Outlook.Application
    Dim olMail As MailItem

    Set olApp = New Outlook.Application
    Set olMail = olApp.CreateItem(olMailItem)

    With olMail
    .To = "RLo...@tfs.textron.com"
    .CC = "JPa...@tfs.textron.com"
    .Subject = "Textron Schedule Agreements: " & Right(CurrFile, 13)
    .Attachments.Add CurrFile & ".xls"
    .Display
    .OriginatorDeliveryReportRequested = True
    .ReadReceiptRequested = True
    ..send 'added to send the mail
    if .sent then
    msgbox "Sent"
    else
    msgbox "Not sent"
    end if
    End With

    Set olMail = Nothing
    Set olApp = Nothing
    End Sub

    But I cannot see in the code you are sending it. (you need to add
    ".send").

    Regards,
    Ivan


  3. #3
    Forum Contributor
    Join Date
    01-19-2006
    Posts
    142
    If I add .Send to the With statement then the email message will try and send it automatically - I want the user to be able to add text the the body of the email first before sending it.

    Not sure what I can do from here?!

    Quote Originally Posted by Ivan Raiminius
    Hi,

    Sub SendAnEmailWithOutlook(CurrFile)

    Dim olApp As Outlook.Application
    Dim olMail As MailItem

    Set olApp = New Outlook.Application
    Set olMail = olApp.CreateItem(olMailItem)

    With olMail
    .To = "RLo...@tfs.textron.com"
    .CC = "JPa...@tfs.textron.com"
    .Subject = "Textron Schedule Agreements: " & Right(CurrFile, 13)
    .Attachments.Add CurrFile & ".xls"
    .Display
    .OriginatorDeliveryReportRequested = True
    .ReadReceiptRequested = True
    ..send 'added to send the mail
    if .sent then
    msgbox "Sent"
    else
    msgbox "Not sent"
    end if
    End With

    Set olMail = Nothing
    Set olApp = Nothing
    End Sub

    But I cannot see in the code you are sending it. (you need to add
    ".send").

    Regards,
    Ivan

  4. #4
    Forum Contributor
    Join Date
    01-19-2006
    Posts
    142
    Hi,

    I have a Function where it checks in the Sent Items Folder;

    Please Login or Register  to view this content.
    This basically finds all the the attachment file names (in Sent Items Folder), if an attachment name is the same as the currFile then the file has been sent.......BUT I dont know how I can implement it into my code so it runs when Oulook has closed?!

    again, all ideas appreciated on this one! Cheers!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1