Closed Thread
Results 1 to 4 of 4

Textbox to email body

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    08-07-2013
    Location
    mo
    MS-Off Ver
    Excel 2010
    Posts
    453

    Textbox to email body

    Hello, I am sending emails from excel and my VBA is below. The issue is I need to pull the content (it is a sentance) from textbox 3 in my excel sheet, but it is currently writting textbox 3 instead of pulling its content. Thanks for help.

    Sub CreateMail()

    Dim rngSubject As Range
    Dim rngTo As Range
    Dim rngBody As Range
    Dim rngWord As String

    Dim objOutlook As Object
    Dim objMail As Object

    Set objOutlook = CreateObject("Outlook.Application")
    Set objMail = objOutlook.CreateItem(0)

    With ActiveSheet
    Set rngTo = .Range("O16")
    Set rngSubject = .Range("O17")
    Set rngBody = .Range(.Range("D15"), .Range("K25").End(xlDown))
    End With
    rngBody.CopyPicture xlScreen, xlBitmap

    With objMail
    .to = rngTo
    .Subject = rngSubject
    .Display 'Instead of .Display, you can use .Send to send the email _
    or .Save to save a copy in the drafts folder
    .Body = "TextBox3.Text"




    End With
    SendKeys "({END})"
    SendKeys "({ENTER})"
    SendKeys "({ENTER})"
    SendKeys "^({v})", True

    Set objOutlook = Nothing
    Set objMail = Nothing

    End Sub

  2. #2
    Forum Contributor
    Join Date
    08-07-2013
    Location
    mo
    MS-Off Ver
    Excel 2010
    Posts
    453

    Re: Textbox to email body

    Sub CreateMail()

    Dim rngSubject As Range
    Dim rngTo As Range
    Dim rngBody As Range
    Dim rngWord As String
    
    Dim objOutlook As Object
    Dim objMail As Object
    
    Set objOutlook = CreateObject("Outlook.Application")
    Set objMail = objOutlook.CreateItem(0)
    
    With ActiveSheet
    Set rngTo = .Range("O16")
    Set rngSubject = .Range("O17")
    Set rngBody = .Range(.Range("D15"), .Range("K25").End(xlDown))
    End With
    rngBody.CopyPicture xlScreen, xlBitmap
    
    With objMail
    .to = rngTo
    .Subject = rngSubject
    .Display 'Instead of .Display, you can use .Send to send the email _
    or .Save to save a copy in the drafts folder
    .Body = "TextBox3.Text"
    
    
    
    
    End With
    SendKeys "({END})"
    SendKeys "({ENTER})"
    SendKeys "({ENTER})"
    SendKeys "^({v})", True
    
    Set objOutlook = Nothing
    Set objMail = Nothing

  3. #3
    Administrator 6StringJazzer's Avatar
    Join Date
    01-27-2010
    Location
    Tysons Corner, VA, USA
    MS-Off Ver
    MS 365 Family 64-bit 2502
    Posts
    26,847

    Re: Textbox to email body

    Remove the quotes here:
    .Body = TextBox3.Text
    Jeff
    | | |會 |會 |會 |會 | |:| | |會 |會
    Read the rules
    Use code tags to [code]enclose your code![/code]

  4. #4
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Textbox to email body

    Hello mattress58,

    This a duplicate of your post here. This post will be closed. Please continue with your original thread.
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

Closed Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Send New Email W/ Body of Received Email, Then Delete Sent Email
    By edneal2 in forum Outlook Formatting & Functions
    Replies: 2
    Last Post: 07-01-2013, 12:45 AM
  2. export outlook 2007 email into excel with subject and body of email
    By akulka58 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-25-2013, 02:37 PM
  3. Replies: 2
    Last Post: 08-01-2012, 02:47 PM
  4. Replies: 6
    Last Post: 12-02-2011, 02:14 PM
  5. possible to write email body in userform's textbox?
    By dan2010 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 11-29-2010, 05:12 AM

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