473,791 Members | 2,947 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

To put a hyperlink from access in body e-mail outlook

8 New Member
Hi,

I have a form with:
- e-mail adress
- subject (text)
- reference (hyperlink to a pdf document on the server)

Now I have a VBA code who allows me to open an e-mail in outlook, with the e-mail adress, the subject and in the body the hyperlink:

Expand|Select|Wrap|Line Numbers
  1. Dim mess_body As String
  2. Dim appOutLook As Outlook.Application
  3. Dim MailOutLook As Outlook.MailItem
  4. Set appOutLook = CreateObject("Outlook.Application")
  5. Set MailOutLook = appOutLook.CreateItem(olMailItem)
  6.  
  7. Set appOutLook = CreateObject("Outlook.Application")
  8. Set MailOutLook = appOutLook.CreateItem(olMailItem)
  9. With MailOutLook
  10. .BodyFormat = olFormatRichText
  11. .To = Me.emailadress
  12. .Subject = Me.subject
  13. .Body = Me.referece
  14.  
Problem: the hyperlink in the e-mail is displayed as a text format (like a hyperlink is built in access)

For Example:

2000#P:\Represe ntation\documen t2000.pdf#

What I want is that in the body of the e-mail, just the display text (here: 2000) is and that the link there still behind is (here: P:\Representati on\document2000 .pdf ) --> like it is on the access form

So that I can e-mail the link to a person (who has also access to the server) instead of sending the pdf file.

Can anyone help me? Has a tip?

Greetings and thanks,
Tonaldo
Sep 21 '10 #1
13 15640
Mariostg
332 Contributor
.Body=Replace(M e.Reference, "#", "")
Sep 21 '10 #2
Tonaldo
8 New Member
Thanks for the reply mariostg.
When I change:

.Body = reference
into:
.Body = Replace (Me.Reference, "#", "")

The body of my e-mail looks like:

2000P:\Represen tation\document 2000.pdf

But the link doesn't work, only the # has disappeared...
Sep 21 '10 #3
Mariostg
332 Contributor
Ah sorry, I did not see about displaying the 2000.
I am not familiar with rtf syntax but if it might help, were you using an html formatted email instead, that would display your link as wanted
Expand|Select|Wrap|Line Numbers
  1. Dim link As Variant
  2. link = (Split(Me.Reference, "#"))
  3. mylink = "<a href='" & link(1) & "'>" & link(0) & "</a>"
  4.  
Sep 21 '10 #4
Tonaldo
8 New Member
Thanks for the advice.

Now I got this code:
Expand|Select|Wrap|Line Numbers
  1. Dim link As Variant
  2. link = (Split(Me.Reference, "#"))
  3. mylink = "<a href='" & link(1) & "'>" & link(0) & "</a>"
  4.  
  5. Dim mess_body As String
  6.         Dim appOutLook As Outlook.Application
  7.         Dim MailOutLook As Outlook.MailItem
  8.         Set appOutLook = CreateObject("Outlook.Application")
  9.         Set MailOutLook = appOutLook.CreateItem(olMailItem)
  10.  
  11.             Set appOutLook = CreateObject("Outlook.Application")
  12.             Set MailOutLook = appOutLook.CreateItem(olMailItem)
  13.             With MailOutLook
  14.             .BodyFormat = olFormatHTML
  15.             .To = Me.email
  16.             .Subject = Me.subject
  17.             .Body = mylink
  18.  
The result in HTML code looks good (body e-mail):

<a href='P:\Repres entation\docume nt2000.pdf'>200 0</a>

Only problem is, using outlook2007 which doesn't allow using html code in their e-mail...
Sep 21 '10 #5
Mariostg
332 Contributor
I did not know about that constraint in Office 2007, I am using Office 2003.
I suggest you open an rtf file that contains a hyperlink with something like TextPad so you can see the tags.

It would likely show something like this:
Expand|Select|Wrap|Line Numbers
  1. {\field{\*\fldinst{HYPERLINK "\Representation\document2000.pdf#"}}{\fldrslt{\cf1\ul\f1 2000\f1 }}
  2.  
Sep 21 '10 #6
Tonaldo
8 New Member
Thanks again, Mariostg.

I understand what you want to say, but don't understand the code :-).
I don't really know where to paste that part in my VBA code... Can you help me? (sorry I just started learning working with VBA)

Any other suggestion to solve the problem?
Sep 22 '10 #7
Mariostg
332 Contributor
I am guessing here as I am not familiar with rtf, but in my opinion, based on the provided sample code it would go like so
Expand|Select|Wrap|Line Numbers
  1. mylink = "{\field{\*\fldinst{HYPERLINK "" \ " & link(1) & "#""}}{\fldrslt{\cf1\ul\f1" & link(0) & "\f1 }}"
  2.  
Watch for the double quotes, it gets confusing...
Sep 22 '10 #8
Tonaldo
8 New Member
I don't really understand the code, but I tried it, so I got this in my VBA...

Expand|Select|Wrap|Line Numbers
  1. Dim link As Variant
  2. link = (Split(Me.Reference, "#"))
  3. mylink = "{\field{\*\fldinst{HYPERLINK "" \ " & link(1) & "#""}}{\fldrslt{\cf1\ul\f1" & link(0) & "\f1 }}"
  4.  
  5. Dim mess_body As String
  6.         Dim appOutLook As Outlook.Application
  7.         Dim MailOutLook As Outlook.MailItem
  8.         Set appOutLook = CreateObject("Outlook.Application")
  9.         Set MailOutLook = appOutLook.CreateItem(olMailItem)
  10.  
  11.             Set appOutLook = CreateObject("Outlook.Application")
  12.             Set MailOutLook = appOutLook.CreateItem(olMailItem)
  13.             With MailOutLook
  14.             .BodyFormat = olFormatHTML
  15.             .To = Me.email
  16.             .Subject = Me.subject
  17.             .Body = mylink
  18.  
The result in my e-mail is this:

{\field{\*\fldi nst{HYPERLINK " \ P:\Representati on\document2000 .pdf#"}}{\fldrs lt{\cf1\ul\f121 51\f1 }}
Sep 22 '10 #9
Mariostg
332 Contributor
Maybe you want to check this it should give you some rtf clues.
http://www.microsoft.com/downloads/e...displaylang=en

I don't use Office 2007 so I can't really help further. I have a routine that creates html emails and it basically goes like so. It creates html formatted emails though.
Expand|Select|Wrap|Line Numbers
  1. Function CreateMail(strTo, strCC, strTitle, strBody)
  2. Dim objMailItem As Outlook.MailItem
  3. Set olkapp = New Outlook.Application
  4. Set olknamespace = olkapp.GetNamespace("MAPI")
  5. Set objMailItem = olkapp.CreateItem(olMailItem)
  6. With objMailItem
  7.     .To = strTo
  8.     .cc = strCC
  9.     '.Recipients.ResolveAll
  10.     .Subject = strTitle
  11.     '.Body = strBody
  12.     .Display
  13.     .HTMLBody = strBody
  14. End With
  15.  
  16. Set objMailItem = Nothing
  17. Set olknamespace = Nothing
  18. Set olkapp = Nothing
  19. End Function
  20.  
Sep 22 '10 #10

Sign in to post your reply or Sign up for a free account.

Similar topics

3
2836
by: niv | last post by:
i have a database, one of the fields is a hyperlink to a htm file. i want to activate it automaticly as the asp file is loaded no click is needed.so that the background of the BODY part will remain and that text will be of the htm file. Both the background and the htm file are one record in the database, i tried: <BODY backgound='<%details("background")%>' HREF=<%details ("htmfile")%>'> the background field is a text field, containing...
4
5286
by: Salad | last post by:
If I create a field as a hyperlink, Access will open the hyperlink if I single click it. Is there a method within the operating system that would tell access to only open the hyperlink if double-clicked? Is there anything I can do so that Access will open a hyperlink on a double-click? I find opening a hyperlink on a single click annoying. One reason I find it annoying is that I can't single click and then right click to edit/update...
5
2879
by: c676228 | last post by:
Hi, I guess I am confused. In aspx script, I mean (you won't use Codebehind="enrollinfo.aspx.vb", but mix code with html and code together) You can access user control's property directly. Since I am useing visual studio .net, the html and code are seperated. I have the following aspx code which has two user controls: <%@ Register TagPrefix="Subway" TagName="Peopleinfo" Src="Peopleinfo.ascx" %> <%@ Register TagPrefix="Subway"...
1
2627
by: sweetpotatop | last post by:
Hello, I would like to create dynamic hyperlinks in a web page when it is first loaded by using ASP.NET. Basically there will be a list of documents in a folder and I will list them all as a hyperlink for user access. I wonder how I can go through the folder and create the dynamic hyperlink on the fly in ASP.NET.
1
1713
by: Arthur Dent | last post by:
Hello all.... i am REally confused by something... I have a hyperlink control on my page, and for the NavigateUrl property, i have it set to "~/" in the property window (without the quotes). Now, in IE this works beautifully, and the hyperlink redirects you to the root of the web application. In Firefox however it redirects you simply to the page you are currently on. If you mouse over the link, the url that comes up in the status bar is...
2
2437
by: Andy | last post by:
Hi, This is one of those things I thought should e easy... I'm programatically trying to set the navigateURL property in a hyperlink in the headertemplate of a repeater, but always get the following error "Object reference not set to an instance of an object." when referencing the hypermink in the following line.. hypAuthors.NavigateUrl = "http://www.microsoft.com"
3
1907
by: Ruth | last post by:
I need to modify my send email subroutine in VB6 to recognize hyperlinks when the user enters them in the textbox. I am using the CDO.Message object. Any suggestions? From http://www.developmentnow.com/g/38_2006_8_0_17_0/dotnet-languages-vb.htm Posted via DevelopmentNow.com Groups http://www.developmentnow.com
7
10860
by: Beefminator | last post by:
Hello, How can you create a hyperlink in the HTML body of CDOsys email? Line 7 is a link for yahoo.com, but the asp page does not work. Set objMessage = CreateObject("CDO.Message") objMessage.Subject ="Test Page - File upload" objMessage.Sender = "" & Request.Form("email1") & "" objMessage.To ="jason@yahoo.com" objMessage.HTMLBody = "Email: " & Request.Form("email1") & vbCrLf & _
1
2421
SBCUser666
by: SBCUser666 | last post by:
Form field (Text66) defined as Hyperlink. Access 2003 table field defined as Hyperlink. Using VBA I build the hyperlink and poke it into the form field. The field displays like it is a hyperlink (blue and underlined) but clicking on it does nothing. If I open the table and click on the field nothing happens. On the form, if I delete and retype just 1 character the hyperlink functions correctly (on the form and from the table). Thinking that...
0
1709
by: ntcdwrg | last post by:
I had been using a VBscript hyperlinking Access 2003 & ArcMap 9.1. Our software is updated to Access 2007 & ArcMap 9.3.1 and the hyperlink no longer works. Anyone else having this problem? Anyone have a solution? Thanks
0
10419
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10201
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10147
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7531
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6770
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5424
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5552
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3709
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2910
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.