![]() |
swat 4/20/2004 |
bilbo- |
![]() |
Sergey Kornilov admin 4/20/2004 |
Swat, Response.Write "<a href=""mailto:" & GetData(rsData.Fields("EmailLink"), "") & "?subject=" & GetData(rsData.Fields("subject"), "") & "&body=" & GetData(rsData.Fields("body"), "") & """>" & GetData(rsData.Fields("EmailLink"), "") & "</a>" |
B
|
bilbo author 4/20/2004 |
Many thanks for the swift replies what you have written makes sense. It would make more sense if I knew which asp file this needs adding to and where. I have tried looking but with no luck, if you could save my sanity and just point me (holding my hand) in the right direction. |
![]() |
swat 4/20/2004 |
bilbo- ................
Response.Write GetData(rsData.Fields("EmailLink"), "") .
Response.Write "<a href=""mailto:" & GetData(rsData.Fields("EmailLink"), "") & _
|
B
|
bilbo author 4/21/2004 |
All i can find in the xxxx_list.asp file is this |
![]() |
swat 4/21/2004 |
bilbo- if IsBinaryField(rsData.Fields("Email")) or Format("Email")=FORMAT_DATABASE_FILE then
if (rsData.Fields("Email")) <> "" then |
B
|
bilbo author 4/21/2004 |
HTTP 500 - Internal server error |
![]() |
Sergey Kornilov admin 4/21/2004 |
Bilbo, |
![]() |
swat 4/21/2004 |
bilbo- if rsData.Fields("EmailLink") <> "" then
|
B
|
bilbo author 4/21/2004 |
Got it to work using the following; if IsBinaryField(rsData.Fields("Email")) or Format("Email")=FORMAT_DATABASE_FILE then
|
|
500086 5/12/2004 |
Hi, I have managed to get this to work <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=1813&image=1&table=forumreplies' class='bbcemoticon' alt=':P' /> , but I am stuck with the body content. Can anyone tell me how to put carriage returns and other html into the body section. I want to be able to hit the link in the asprunner page and send a fixed email message to the customer. |
![]() |
Sergey Kornilov admin 5/13/2004 |
Laura, if (rsData.Fields("Email")) <> "" then Response.Write "<a href=""mailto:" & GetData(rsData.Fields("Email"), "") & "?subject=" & "Using Nutrafem" & "&body=" & "First line%0d%0aSecond line%0d%0a..." & """>" & GetData(rsData.Fields("Email"), "") & "</a>" end if
|
|
500087 5/14/2004 |
<img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=1840&image=1&table=forumreplies' class='bbc_emoticon' alt=':)' /> Thank you, that's perfect. |
|
500088 4/8/2005 |
How about if I want to the user to be able to send the current page they are viewing by email to someone? |