Ask Question Forum:
Model Library:2025-02-08:A.I. model is online auto reply
C
O
M
P
U
T
E
R
2
8
Show
#
ASK
RECENT
←
- Underline
- Bold
- Italic
- Indent
- Step
- Bullet
- Quote
- Cut
- Copy
- Paste
- Table
- Spelling
- Find & Replace
- Undo
- Redo
- Link
- Attach
- Clear
- Code
Below area will not be traslated by Google,you can input code or other languages
Hint:If find spelling error, You need to correct it,1 by 1 or ignore it (code area won't be checked).
X-position of the mouse cursor
Y-position of the mouse cursor
Y-position of the mouse cursor
Testcursor
caretPos
Attachment:===
Asked by duncanb7
at 2024-03-28 12:47:48
Point:250 Replies:10 POST_ID:828456USER_ID:11059
Topic:
Outlook Groupware Software;Visual Basic Programming;Microsoft Office Suite
I would like to send webpage inside the email to my client by VBA outlook 2003.
Now I just know how to send email in text format as follow simple code attach
I mean Client will receive the email to view the webpage inside the email no need to
re-open IE or no need click the href link to view to view the web page
Please advise and provide a little code for send web page through email sent in Outlook 2003 VBA
Duncan
Now I just know how to send email in text format as follow simple code attach
I mean Client will receive the email to view the webpage inside the email no need to
re-open IE or no need click the href link to view to view the web page
Please advise and provide a little code for send web page through email sent in Outlook 2003 VBA
Duncan
Function sendmail()Set app = CreateObject("outlook.application")Set itm = app.CreateItem(0)Application.DisplayAlerts = FalseWith itm.Subject = "dail report".To = "duncanuk9@hotmail.com.hk".Body = "daily last report"'.Display.Send End WithSet app = NothingSet itm = NothingEnd Function 1:2:3:4:5:6:7:8:9:10:11:12:13:14:15:
Author: duncanb7 replied at 2024-03-31 08:04:37
>>>>it works but some ISP email box could not display the wbepage , Why?
Probably it is blocked by the system administrator?
>>>>I use .htmlbody that is similar to .body , Why ?
I suggested .htmlbody for a different reason. I am not sure if you can use that here.
Sid
Probably it is blocked by the system administrator?
>>>>I use .htmlbody that is similar to .body , Why ?
I suggested .htmlbody for a different reason. I am not sure if you can use that here.
Sid
Expert: SiddharthRout replied at 2024-03-30 10:17:11
>>>>it works but some ISP email box could not display the wbepage , Why?
Probably it is blocked by the system administrator?
>>>>I use .htmlbody that is similar to .body , Why ?
I suggested .htmlbody for a different reason. I am not sure if you can use that here.
Sid
Probably it is blocked by the system administrator?
>>>>I use .htmlbody that is similar to .body , Why ?
I suggested .htmlbody for a different reason. I am not sure if you can use that here.
Sid
Author: duncanb7 replied at 2024-03-30 10:04:59
I use .htmlbody that is similar to .body , Why ?
Author: duncanb7 replied at 2024-03-30 10:04:09
it works but some ISP email box could not display the wbepage , Why?
and if we can .htmlbody in VBA is same as your suggestion web site
and if we can .htmlbody in VBA is same as your suggestion web site
Accepted Solution
Expert: SiddharthRout replied at 2024-03-29 14:27:13
250 points EXCELLENT
I am not sure you can do it via code but I think this is what you want?
Title:Viewing Web Pages in Outlook
Link: http://h10076.www1.hp.com/education/demo/Outlook/ol-intro/webpage.htm
Sid
Title:Viewing Web Pages in Outlook
Link: http://h10076.www1.hp.com/education/demo/Outlook/ol-intro/webpage.htm
Sid
Author: duncanb7 replied at 2024-03-29 08:45:01
Any suggestion ? Please advise kindly
Author: duncanb7 replied at 2024-03-29 06:12:54
Yes,
Expert: SiddharthRout replied at 2024-03-29 04:21:05
Author: duncanb7 replied at 2024-03-29 03:58:13
For example, www.yahoo.com
.htmlbody="http:www.yahoo.com"
Is it correct ? But I fail, it just send the path of link
.htmlbody="http:www.yahoo.com"
Is it correct ? But I fail, it just send the path of link
Expert: SiddharthRout replied at 2024-03-29 03:35:48
Instead of .Body, you will have to use .HtmlBody :)
Can you give more details of this web page that you want to send?
Sid
Can you give more details of this web page that you want to send?
Sid