+ Reply to Thread
Results 1 to 3 of 3

Need help!! Sending email from outlook through excel

  1. #1
    Registered User
    Join Date
    06-13-2011
    Location
    london
    MS-Off Ver
    Excel 2003
    Posts
    1

    Unhappy Need help!! Sending email from outlook through excel

    Hi

    I need help in VB codes in excel, I am getting error:

    Run-time error ‘-2147024894(80070002)
    System cannot find the file specified

    I have passted my vb code below, what should I do that if I get this error it shoudl still continue with the next cell skipping this error message.

    A B
    Email id file
    [email protected] c:\kdmtemp\206564.zip
    [email protected] c:\kdmtemp\206616.zip
    [email protected] c:\kdmtemp\208168.zip
    [email protected] c:\kdmtemp\206344.zip


    Vb codes which I am using:
    Sub sendEmail()


    Dim i
    Dim myOutlook As Object
    Dim myMailItem As Object

    For i = 1 To 100

    If Range("a" & i + 1) <> "" Then


    Set otlapp = CreateObject("Outlook.Application")
    Set otlNewMail = otlapp.CreateItem(olMailItem)
    fName = Range("b" & i + 1)


    With otlNewMail
    .To = Range("a" & i + 1)
    .CC = Range("a" & i + 1)
    .Subject = "Email from me"
    .Body = "Attached is today's Report."

    .Attachments.Add fName
    .Display

    End With
    End If

    Next i

    Set otlNewMail = Nothing
    Set otlapp = Nothing
    Set otlAttach = Nothing
    Set otlMess = Nothing
    Set otlNSpace = Nothing

    End Sub

  2. #2
    Forum Expert Mordred's Avatar
    Join Date
    07-06-2010
    Location
    Winnipeg, Canada
    MS-Off Ver
    2007, 2010
    Posts
    2,787

    Re: Need help!! Sending email from outlook through excel

    HI tuyash and welcome to the forum. Please take a few moments to read the forum rules located here. Specifically, read rule 1 regarding titles and rule 3 regarding code tags around your code. Once you do this someone should be able to help you.
    If you're happy with someone's help, click that little star at the bottom left of their post to give them Reps.

    ---Keep on Coding in the Free World---

  3. #3
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: Need help!! Sending email from outlook through excel

    Your post does not comply with Rule 3 of our Forum RULES. Use code tags around code. Posting code without them makes your code hard to read and difficult to be copied for testing. Highlight your code and click the # at the top of your post window. For more information about these and other tags, found here


    Your post does not comply with Rule 1 of our Forum RULES. Your post title should accurately and concisely describe your problem, not your anticipated solution. Use terms appropriate to a Google search. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will be addressed according to the OP's experience in the forum: If you have less than 10 posts, expect (and respond to) a request to change your thread title. If you have 10 or more posts, expect your post to be locked, so you can start a new thread with an appropriate title.
    To change a Title on your post, click EDIT then Go Advanced and change your title, if 2 days have passed ask a moderator to do it for you.

    PLEASE PM WHEN YOU HAVE DONE THIS AND I WILL DELETE THIS POST
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

+ 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