Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
From OutLook Expr - how do yo ga-about sendng an URL?
|
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 = " 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 " wrote in message ... From OutLook Expr - how do yo ga-about sendng an URL? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VLOOKUP 1 stop Answer: 3 steps: count dup's, compare dif's, merg | Excel Discussion (Misc queries) | |||
How can I get the value of a cell to increase in steps? | Excel Worksheet Functions | |||
Steps to deleting decimel in excel-ex. 3.24 to 324 | Excel Discussion (Misc queries) | |||
Complex Macro to perform an operation as it steps down cells? | Excel Worksheet Functions | |||
Clean Up Code - consolidate steps | Excel Discussion (Misc queries) |