+ Reply to Thread
Results 1 to 2 of 2

steps to eM URL?

  1. #1
    boswell6@sbcglobal.net
    Guest

    steps to eM URL?

    From OutLook Expr - how do yo ga-about sendng an URL?

  2. #2
    Ron de Bruin
    Guest

    Re: steps to eM URL?

    With code ?

    Sub Mail_Text_in_Body()
    'Example for Outlook Express
    'In Excel 2002 I can use around 600-700 characters
    Dim msg As String, cell As Range
    Dim Recipient As String, Subj As String, HLink As String
    Dim Recipientcc As String, Recipientbcc As String
    Recipient = "ron@debruin.nl"
    Recipientcc = ""
    Recipientbcc = ""
    'You can use a cell value also like this
    'Recipient = Sheets("mysheet").Range("A1").Value
    Subj = "Testbodymail"
    'Subj = Sheets("mysheet").Range("A2").Value
    msg = "http://www.rondebruin.nl/easyfilter.htm"

    HLink = "mailto:" & Recipient & "?" & "cc=" & Recipientcc & "&" & "bcc=" & Recipientbcc & "&"
    HLink = HLink & "subject=" & Subj & "&"
    HLink = HLink & "body=" & msg

    ActiveWorkbook.FollowHyperlink (HLink)
    ' Application.Wait (Now + TimeValue("0:00:03"))
    ' Application.SendKeys "%s"
    End Sub

    See also
    http://www.rondebruin.nl/sendmail.htm


    --
    Regards Ron de Bruin
    http://www.rondebruin.nl


    "boswell6@sbcglobal.net" <boswell6sbcglobalnet@discussions.microsoft.com> wrote in message
    news:E97C99C9-6C7A-41AB-8CB2-4C6C8BDB40B8@microsoft.com...
    > From OutLook Expr - how do yo ga-about sendng an URL?




+ 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