![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
Greetings . . .
I have a slice of code wherein I'm atttempting to send emauils from a db of addresses, in a CDO environment. Everything works just dandy excepth for the fact that the HTML link desired doesn't go through. All the text goes fine. Without bothersonme details, here's a snippet: Code:
StrBod = " HTML " StrBod = StrBod & " HEAD/HEAD " StrBod = StrBod & " BODY " StrBod = StrBod & "Dear Valued People(s), p p " StrBod = StrBod & "You so rock p p "" StrBod = StrBod & "Buy this stuff p p "" StrBod = StrBod & "You'll love it p p "" StrBod = StrBod & "Please click on the link below for more information. p p "" StrBod = StrBod & "Sincerely, p p "" StrBod = StrBod & "Your Excellent Friends p p "p" StrBod = StrBod & "a href = "" http://www.wxyz.com/and/so_forth/and/so_on.html="" + Link + """" /a " StrBod = StrBod & " /BODY " StrBod = StrBod & " /HTML " With iMsg Set .Configuration = iConf .To = EML .CC = "" .BCC = "" .From = " .Subject = "Howdy, Folks" .HTMLBody = StrBod End With The body comes through but not the link. Any idears? |
Ads |
#2
|
|||
|
|||
![]() Quote:
The href statement is: StrBod = StrBod & "{A href = http://www.wxyz.com/and/so_forth/and/so_on.html=}Link{/A} " Odd brackets take the place of the HTML brackets, so exactness is maintained. No plusses or ampersands. And there you have it. Works like a charm! |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
href tags does not result in the full url with Redemption | DPM | Outlook and VBA | 4 | November 18th 09 06:35 AM |
Desktop Alert display href content | Firas Rashid | Outlook - General Queries | 2 | February 21st 06 01:54 PM |