+ Reply to Thread
Results 1 to 19 of 19

Automatic sending email

  1. #1
    Forum Contributor
    Join Date
    02-20-2009
    Location
    bristol
    MS-Off Ver
    Excel 2003
    Posts
    882

    Automatic sending email

    Hi All

    In a folder there are 5 workbooks named A,B,C,D,E . I want the code that
    1. opens all the spreadsheets in a folder ,
    2. automatically enable macros in them
    3. Then copy sheet1 in workbook A and email it to a list of recipients.

    I hope anyone can figure it out for me.

    Thanks a lot.

  2. #2
    Forum Expert
    Join Date
    07-16-2010
    Location
    Northumberland, UK
    MS-Off Ver
    Excel 2007 (home), Excel 2010 (work)
    Posts
    3,054

    Re: Automatic sending email

    Asking for an entire application to be written for you isn't likely to generate many responses, sorry.

    Some pointers for you...

    1. Opening all of the spreadsheets in a folder is fairly straightforward.

    Please Login or Register  to view this content.
    2. For reasons that should be blindingly obvious it's not possible to get Excel to open a workbook and automatically enable macros in it, unless you have proper security certificates set up. Working out how to do this is left as an exercise for the reader.

    3. Have a look at the workbook .SendMail method, but expect to have to confirm that you don't object to a macro sending mail on your behalf. It's easy to find other methods of sending mail from Excel, but I've never found one that doesn't involve the user at least pressing the "Send" button.

    Does this get you started?

  3. #3
    Forum Expert snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,649

    Re: Automatic sending email

    or

    Please Login or Register  to view this content.



  4. #4
    Forum Contributor
    Join Date
    02-20-2009
    Location
    bristol
    MS-Off Ver
    Excel 2003
    Posts
    882

    Re: Automatic sending email

    Hi Andrew the function that you sent me over is giving some problem at Optional Smask parameter.

    Snb, In a folder suppose f1 there are 5 different workbooks. so I want to automatically open all of them at 7pm evryday and then send the sheet1 in workbook A to a list of recipients.

    I hope anyone can figure out my problem.

    Thanks a lot for your help.

  5. #5
    Forum Expert
    Join Date
    07-16-2010
    Location
    Northumberland, UK
    MS-Off Ver
    Excel 2007 (home), Excel 2010 (work)
    Posts
    3,054

    Re: Automatic sending email

    Quote Originally Posted by aman1234 View Post
    Hi Andrew the function that you sent me over is giving some problem at Optional Smask parameter.
    Have you tried applying some fix?


    Seriously, what is the issue. When you call the sub-routine are you putting brackets around the parameters? Are you specifying an sMask parameter or are you leaving it as default?

  6. #6
    Forum Contributor
    Join Date
    02-20-2009
    Location
    bristol
    MS-Off Ver
    Excel 2003
    Posts
    882

    Re: Automatic sending email

    Hi

    I have written the following code but it doesn't do anything.
    Please Login or Register  to view this content.
    Please help me to figure it out.

    Thanks

  7. #7
    Forum Expert
    Join Date
    07-16-2010
    Location
    Northumberland, UK
    MS-Off Ver
    Excel 2007 (home), Excel 2010 (work)
    Posts
    3,054

    Re: Automatic sending email

    I've just tested that code on my machine and it works absolutely fine.

    Do you have any Excel files in the specified directory?

  8. #8
    Forum Contributor
    Join Date
    02-20-2009
    Location
    bristol
    MS-Off Ver
    Excel 2003
    Posts
    882

    Re: Automatic sending email

    Thanks Andrew. It worked fine at my end too. I was using the wrong folder name n thats way I didn't work earlier.

    Ok. now could you please help me to send sheet1 in opened workbook A to various recipients.

    Thanks a lot for your help so far.

  9. #9
    Forum Expert
    Join Date
    07-16-2010
    Location
    Northumberland, UK
    MS-Off Ver
    Excel 2007 (home), Excel 2010 (work)
    Posts
    3,054

    Re: Automatic sending email

    As I said further up there ^^^^ there's a workbook .SendMail method, used in the format:

    Please Login or Register  to view this content.

    Excel will warn you that a macro is trying to send mail on your behalf, but (IMO) it's easier to work this way than to create an Outlook object.

  10. #10
    Forum Expert
    Join Date
    07-16-2010
    Location
    Northumberland, UK
    MS-Off Ver
    Excel 2007 (home), Excel 2010 (work)
    Posts
    3,054

    Re: Automatic sending email

    If you're interested, I used the following sub-routine to send mails from the scheduling spreadsheet that I use. Obviously it will require some hacking around to meet your needs, but it might give you the basics on how e-mails can be sent, via Outlook, from Excel.

    Please Login or Register  to view this content.

    I wrote this quite some time ago, so it's not as neat as it could be, but it does the job.

  11. #11
    Forum Contributor
    Join Date
    02-20-2009
    Location
    bristol
    MS-Off Ver
    Excel 2003
    Posts
    882

    Re: Automatic sending email

    As there are around 6 workbooks opened using the code in last post so how can I refer to particular workbook and send the sheet1 in that workbook using vba.

    My current workbook is Test.
    The next 6 workbooks which are opened using the code that you sent me over are named as A,B,C,D,E,F.

    And now I want to send sheet1 in workbook A from my current workbook Test using vba.

    I hope you understand what I mean.

    Thanks a lot.

  12. #12
    Forum Expert
    Join Date
    07-16-2010
    Location
    Northumberland, UK
    MS-Off Ver
    Excel 2007 (home), Excel 2010 (work)
    Posts
    3,054

    Re: Automatic sending email

    You can identify which workbook you're talking about by:

    a. Refering to it by name, e.g. Workbooks("My workbook.xlsx").SendMail

    b. Or by index number, e.g. Workbooks(1).SendMail

    c. Or by assigning the workbook to a workbook object, e.g.

    Please Login or Register  to view this content.
    d. By activating it before you use it and then using the Activeworkbook object

    e. By running the macro code from within the workbook you want to use and using the ThisWorkbook object.

    f. Probably lots of other ways that the good people here will be kind enough to suggest.


    If you only want to send Sheet1 then I'd copy sheet 1 from the target workbook to a new workbook and assign that workbook to a workbook object.

    Does that help?

  13. #13
    Forum Contributor
    Join Date
    02-20-2009
    Location
    bristol
    MS-Off Ver
    Excel 2003
    Posts
    882

    Re: Automatic sending email

    Andrew,
    If I write the following code then it gives an error message that this workbook is already opened.
    Please Login or Register  to view this content.
    As we have opened all the workbooks using the code you sent me earlier so I am confused. Can you please send me the exact that solves my purpose.

    Thanks a lot for your help .

  14. #14
    Forum Contributor
    Join Date
    02-20-2009
    Location
    bristol
    MS-Off Ver
    Excel 2003
    Posts
    882

    Re: Automatic sending email

    I am writing the following code but It doesn't include anything in the body and an empty email is being sent.
    Please Login or Register  to view this content.
    Last edited by romperstomper; 08-15-2011 at 08:11 AM. Reason: fix code tags

  15. #15
    Forum Expert
    Join Date
    07-16-2010
    Location
    Northumberland, UK
    MS-Off Ver
    Excel 2007 (home), Excel 2010 (work)
    Posts
    3,054

    Re: Automatic sending email

    OK, there's a number of problems that I can see with a 30 seconds look through:

    1. You need to fix your close code tag in your previous post.

    2. The line of code you quoted in the previous post doesn't work because it's meant to be used in the sub-routine to open the files, not in addition to it. However, as you're opening multiple files you'll need to have a method for assigning each of them to a different workbook object - using an array, for example.

    3. I suspect that your RangeToHTML function is returning nothing. I'd try at least passing rng to it as a parameter and see if that helps.

    4. While you're still coding I'd take out all of the On Error statements so that you can see where errors occur.

  16. #16
    Forum Contributor
    Join Date
    02-20-2009
    Location
    bristol
    MS-Off Ver
    Excel 2003
    Posts
    882

    Re: Automatic sending email

    Hi Andrew

    I tried to solve it a lot but still the email that is being sent is blank(Without body).

    Please can you send me the code to solve this purpose.

    Thanks

  17. #17
    Forum Contributor
    Join Date
    02-20-2009
    Location
    bristol
    MS-Off Ver
    Excel 2003
    Posts
    882

    Re: Automatic sending email

    Andrew: I figured out something: If i wrire the following code which sends an attachment with email then it works:

    Please Login or Register  to view this content.
    But if I want to just display "Slide" sheet of "a.xls" in the body of email as follows then it doesn't do anything but send a blank email:

    Please Login or Register  to view this content.
    Please help me out to send "Slide" sheet in the body of the email.

    Thanks a lot

  18. #18
    Forum Contributor
    Join Date
    02-20-2009
    Location
    bristol
    MS-Off Ver
    Excel 2003
    Posts
    882

    Re: Automatic sending email

    Can anyone please figure out my problem?

    Thanks

  19. #19
    Forum Contributor
    Join Date
    02-20-2009
    Location
    bristol
    MS-Off Ver
    Excel 2003
    Posts
    882

    Re: Automatic sending email

    Hi guys

    I still couldn't figure out how to do that part. Please help me out with this.

    Thanks

+ 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