When I send a link via e-mail, how can the link stay hot so that the person getting it can forward to another?

I type a link to our server in an e-mail. I have tested the link and it works. The person getting the link clicks on it and it works. The person getting it forwards the e-mail to another and the link does not work for the second person.

It's easy just write it like this :
http://www.google.com
i used google as a example you can replace it with any other link but keep http://
i wish that helps

Similar Messages

  • When I send a photo via e-mail, it is recieved, upsidedown what am I doing wrong?

    What does a photo sent from the phone via e-mail get recieved upsidedown?

    Nothing. The program being used to view it on the other end is disregarding the exif data embedded in the image that indicates which way is 'up'.

  • When i send a text via icloud my e-mail address is sent at the same time ?

    when i send a text via icloud my e-mail address is sent at the same time instead of the reciever getting my number or if i am in their phonebook they should get my name

    Welcome to the Apple community.
    Check your settings> messages and see if iMessages is turned on and if so how many 'receive at' addresses you are using, it may well be that your email address is entered as one of these addresses.

  • When I send an email from Apple mail, it send inbedded links, not embedded, my font shows as plain text and signature sends as attachment??

    When I send an email from Apple mail, it send inbedded links, not embedded, my font shows as plain text and signature sends as attachment??

    inbedded is not a word.

  • When I send a photo via a text message...

    When I send a picuture via a text message using my iPhone 5, the text message contains all the photos that I have sent/received from a particular person.  Is there a way to stop this so that I only send one picture at a time?  I do not think I should have to send a text message that contains multiple pictures every time I send a picture to that same person.

    Hello and thank you for using the Palm Help Forums!
    Well, there are several things that can cause the device to reset.
    One, corrupted data. If you have corrupted data on the device, when trying to access it, it can and most likely will, cause the device to reset.
    Two, Low memory. If the device has low memory, the device will operate slow and most likely reset because it doesn't have a lot of free space. The free space remaining on the device is it's thinking room you could say. The smaller the thinking margin, the more likely it will not perfrom correctly. Best way to fix memory issues is to get an SD card and save all media files to the SD card.
    Three, incompatible software. If there is incompatible 3rd party programs installed on the device this can cause several problems. Resets, missing data, and other functions not performing correctly.
    The best thing I can recommend you do is a hard reset. A hard reset will erase all data on the device but restore all settings to default. Be sure to backup your data on a PC before performing a hard reset. For further information and instructions on how to do a hard reset go to kb.palm.com and look up article number 42094 in the solution ID search field.
    I hope this helps and let me know if you have any further questions or issues.
    -Pat
    Post relates to: Treo 800w (Sprint)

  • Is it normal that, when I try to share something on my iphone 5, be it via e-mail or textmessage, my keyboard is no longer touching the bottom of my screen, it 'floats' in the middle of my screen, making it impossible to choose the addressee?

    Dear fellow Apple owners,
    Is it normal that, when I try to share something on my iphone 5, be it via e-mail or textmessage, my keyboard is no longer touching the bottom of my screen, it 'floats' in the middle of my screen, making it impossible to choose the addressee?
    http://imgur.com/dwXwdGu.jpg
    Has anybody seen this before?
    I had it in 6.1.2, 6.1.3 and 6.1.4
    All of them have the same problem...
    Does anybody have a solution?

    Hey StevenKusters,
    Welcome to Apple Support Communities! First I would try backing up and erasing all content and settings, but if that doesn't resolve the issue you can use iTunes to restore your iOS device - part of standard isolation troubleshooting. Restoring your device will delete all data and content, including songs, videos, contacts, photos, and calendar information, and will restore all settings to their factory condition.
    iTunes: Restoring iOS software
    http://support.apple.com/kb/HT1414
    All the best,
    David

  • How to send purchase order via e-mail.

    Please could someone let me know how to send purchase order via e-mail.
    I am an BC.
    e-mailing is functionning however I am not very familiar in settings for MM

    No, you do not need to touch ME_PRINT_PO. You need to put code before and after ME_PRINT_PO in the print program.
    Step 1 - Copy the standard print program SAPFM06P to make a Z version, lets call it ZSAPFM06P
    Step 2 - Copy include FM06PE02 to make a Z version, lets call that ZFM06PE02.
    Step 3 - ZSAPFM06P change the statement "Include FM06PE02" to read "Include ZFM06PE02".
    Step 4 - In include ZFM06PE02 you will find a subroutine called "ENTRY_NEU". In this subroutine you will see it first calls ME_READ_PO_FOR_PRINTING then calls ME_PRINT_PO. Before it calls ME_PRINT_PO just put:
    l_nast-nacha = 1.
    CLEAR l_nast-dimme.
    This means that ME_PRINT_PO will not e-mail, it will create a spool request.
    Step 5 - Still in ZFM06PE02, after ME_PRINT_PO has been called, add new code. First check that ent_retco EQ 0. If it does not then exit.
    Step 6 - Get the spool ID created by ME_PRINT_PO by either moving sy-msgv1 to a variable or select from NAST.
    Step 7 - Call function CONVERT_OTFSPOOLJOB_2_PDF using the spool ID from step 6, and put the result from table PDF into an internal table you can use later. ALso store the export variable pdf_bytecount, you will need it later.
    Step 8 - Call function SX_TABLE_LINE_WIDTH_CHANGE using the table from step 7 as content_in and put the results from content_out into a new internal table.
    Step 9 - Add some text into a internal table of type solisti1, this will be the body text of the e-mail.
    Step 10 - Add whatever receivers you want into an internal table of type somlreci1. If you just want it to go to the address that the PO would have gone to anyway, select the e-mail address from ADR6 where the address number = l_doc-xekko-adrnr, that is the data from the PO.
    Step 11 - Populate an internal table of type sopcklsti1 with data relevant to your PDF table from step 8 and the text table from step 9. You will have to put the size of the PDF from step 7 (pdf_bytecount) on the PDF line and the size of the text will be the number of lines of text * 255.
    Step 12 - Add info to a structure of type sodocchgi1. You can add the e-mail title in here, field obj_descr. Also add the size of the PDF and the size of the text from step 12 into doc_size, and give the doc a name in field obj_name. This can be anything, ZPDFPO for example.
    Step 13 - Call SO_DOCUMENT_SEND_API1 using the tables from steps 8, 9, 10 and 11 and the structure from step 12. You can amend the sending e-mail also. Set commit_work to space.
    Step 14 - That is all you need, but I actually call function RSPO_R_RDELETE_SPOOLREQ to delete the spool request created in step 4, then call NAST_PROTOCOL_UPDATE to add some more messages to the processing log of the PO.
    That is all.

  • How to send a file via e-mail with director

    Is it even possible to have a button in a free-standing
    projector that would send a file via e-mail, or open up an e-mail
    program and have the file attached and addressed? Or is it possible
    to put a file on a server? Of course, both of these methods would
    alert the user and ask for their permission.

    To just open the user's email program, you can use the
    standard lingo:
    goToNetPage(mailto:[email protected])
    That approach is kind of annoying because it actually opens
    an empty
    browser window then the user's email program. I don't think
    you can use
    that approach to send attachments though.
    A much better way is the fabulous DirectEmail xtra from
    DirectXtras.
    Check out their site:
    http://www.directxtras.com/demail_home.asp?UUID=1217348
    DirectEmail can do everything you are asking for (and more).
    It is
    cross-platform, shockwave safe, can handle text or HTML
    email, can do
    attachments, can use a mail server or not, and is really easy
    to use.
    The same company makes DirectFTP which you can get from:
    http://www.directxtras.com/DFTP_home.asp?UUID=1217348
    DirectFTP can put files onto an FTP site with a minimum of
    fuss. I have
    used both on quite a few occasions and they rock. You can
    actually
    write a full-fledged email or ftp program with those xtras
    and Director.

  • How to send a report via e-mail

    Hello All,
               I want to send a report via e-mail.
               What should I do for that?
                Please help me out...
    Regards,
    Ravi Khattar.

    Hi,
      Please check the below code....
    data: t_objpack    like sopcklsti1 occurs 1 with header line,
            t_objhead    like solisti1   occurs 1 with header line,
            t_objtxt     like solisti1   occurs 0 with header line,
            t_objbin     like solisti1   occurs 1 with header line,
            t_reclist    like somlreci1  occurs 1 with header line,
            t_lobj       like abaplist   occurs 0 with header line,
            t_listobj    like abaplist   occurs 1 with header line.
      data: v_tab_line1  type i,
            v_tab_line2  type i,
            v_docsize    type i,
            v_len        type i,
            v_line(1250) type c,
            v_subj(132)  type c,
            v_cr(1)      type x value '0D',
            v_linefd(2)  type x value '0D0A',
            v_docdata    like sodocchgi1.
      clear: t_objpack[], t_objhead[], t_objtxt[], t_reclist[], t_listobj[].
      concatenate 'This email is generated from a SAP' sy-sysid '-'
         sy-mandt '- batch environment.' into t_objtxt separated by ' '.
      append t_objtxt.
      t_objtxt = 'Please do not respond to this email.'. append t_objtxt.
      v_docdata-obj_name = 'SAMPLE_TEST'.
      concatenate 'Sales Order Status Attachment -' sy-datum '-' sy-uzeit
             into v_subj separated by ' '.
      v_docdata-obj_descr = v_subj.
      describe table t_objtxt lines v_tab_line1.
      read table t_objtxt index v_tab_line1.
      v_docdata-doc_size   = ( v_tab_line1 - 1 ) * 255 + strlen( t_objtxt ).
      t_objpack-head_start = 1.
      t_objpack-head_num   = 1.
      t_objpack-body_start = 1.
      t_objpack-body_num   = v_tab_line1.
      t_objpack-doc_type   = 'RAW'.
      append t_objpack.
      clear v_line.
      if p_type = '1'.
        loop at t_list.
          concatenate v_line t_list v_linefd into v_line.
          v_len = strlen( v_line ).
          do 4 times.
            if v_len ge 255.
              if v_line+254(1) = v_cr.
                v_line255     = v_line254.
                v_line+254(1)  = ' '.
              endif.
              t_objtxt = v_line(255).
              v_line   = v_line+255.
              v_len    = v_len - 255.
              append t_objtxt.
            else.
              exit.
            endif.
          enddo.
        endloop.
        if v_line ne ' '.
          t_objtxt = v_line(255).
          append t_objtxt.
        endif.
        describe table t_objtxt lines v_tab_line2.
        t_objpack-doc_size   = ( v_tab_line2 - v_tab_line1 ) * 255.
        t_objpack-body_start = v_tab_line1 + 1.
        t_objpack-transf_bin = ' '.
        t_objpack-doc_type   = 'TXT'.
      else.
        t_objbin[] = html[].
        describe table t_objbin lines v_tab_line2.
        t_objpack-doc_size   = v_tab_line2 * 255.
        t_objpack-body_start = 1.
        t_objpack-transf_bin = 'X'.
        t_objpack-doc_type   = 'HTM'.
      endif.
      t_objpack-head_start = 1.
      t_objpack-head_num   = 1.
      t_objpack-body_num   = v_tab_line2.
      t_objpack-obj_name   = 'SAMPLE_TEST'.
      t_objpack-obj_descr  = 'Test'.
      append t_objpack.
      loop at s_email.
        t_reclist-receiver = s_email-low.
        t_reclist-rec_type = 'U'.
        append t_reclist.
      endloop.
      t_reclist-receiver   = sy-uname.
      t_reclist-rec_type   = 'B'.
      append t_reclist.
      call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           EXPORTING
                document_data = v_docdata
                put_in_outbox = ' '
           TABLES
                packing_list  = t_objpack
                object_header = t_objhead
                contents_bin  = t_objbin
                contents_txt  = t_objtxt
                receivers     = t_reclist.
      if sy-subrc = 0.
       endif.
    Cheers,
    Bujji

  • TS4083 When I send an email using iCloud Mail, it does not appear in the send box.

    When I send an email using iCloud Mail, it does't appear in the send box. Not in icloud, nor on any other devices. Any idea why not?

    not all mail providers sync the send mail part of the mail box
    you can try to contact yahoo if this is the case with them

  • When I send an email from Mac Mail, why does Mail go to the background and the Finder comes to the front? I want it to stay in Mail.

    When I send an email from Mac Mail, why does Mail go to the background and the Finder comes to the front? I want it to stay in Mail.

    Did you check your user name and password in Settings>Mail,Contacts,Calendars...tap your email account, tap SMTP, then tap the primary server name.  Make sure the settings there are correct.

  • I recently updated the software on my ipad2 to 5.0.1 and when I send a message via "chat" it shows on all the iPhones associated with my account (my sisters, my husbands, etc) is there a way to stop that?

    I recently updated the software on my ipad2 to 5.0.1 and when I send a message via "chat" it shows on all the iPhones associated with my account (my sisters, my husbands, etc) is there a way to stop that?

    If you have been using your phone as recommended, you should have minimal data loss from the inability to restore from a backup.
    Contacts and calendars should be synched to a computer application like Outlook or Address Book (or a cloud service like Google Contacts or iCloud).  The update process does NOT affect these computer applications so your contacts and calendars should be safe and sound in the application ready for synching back to your phone.
    Same for photos.  It is recommended that photos be imported to your computer as soon as possible after taking them (just as you would import them from any other camera) for storage, archival and safekeeping.  Again, your photos should be safe and sound on your computer.
    If you've not been using your computer as recommended, you've learned a very hard lesson, I'm afraid.

  • Trying to send a photo via e-mail from iPhoto.  But it says my e-mail and password are wrong and won't send and I don't know how to correct it.  Where do I go?

    Trying to send a photo via e-mail from iPhoto.  But it says my e-mail and password are wrong and won't send and I don't know how to correct it.  Where do I go?

    In the iPhoto preferences ==> accounts delete the account and re-enter it
    LN

  • When I send an email message, my Mail shows two messages outgoing instead of just the one I am sending.  What is going on?

    When I send an email message, my Mail shows two messages outgoing instead of just one. 
    What is going on?  Is it possible some "spyware" has crept in?

    There is an email address on my website that automatically forwards to my "regular" email address, but this problem predates setting up that website.  My primary email is a bellsouth account (AT&T) which switched to a Yahoo mail-supported service....so based on your comments, perhaps that is why the activity is looking weird.

  • Cannot send scanned PDF via Apple Mail

    Hi all,
    here at work we have the strange problem that we cannot send Mails with PDFs which are scanned with our MFP Xerox Phaser 6180MFP-D and then transferred to the Mac Desktop which are the send with Apple Mail.
    In the Activity Window we see that the Mail sending is stalling at 16%. Other PDFs can be sended without Problems.
    Even the PDFs which we cannot send with Apple Mail can be send with Entourage 2004. The Problem exists in OSX 10.5 and OSX 10.3. Does anyone have an Idea how we can try to solve this? Is there a debugger around?
    Thanks a lot in advance
    Regards,
    Stefan

    Stefan,
    Can you email me such a PDF (using Entourage apparently)? My address can be found by clicking on my name to the left, and looking in the bio line of the resulting Profile.
    I will be able to test with both 10.5 and 10.4. I am suspecting this may be a timing out problem? Could be related to MTU (maximum transmission unit) with your connection, which can differ depending upon the application doing the uploading. If so there are diagnostics tests for checking -- see:
    http://support.apple.com/kb/HT2532
    and
    http://docs.info.apple.com/article.html?path=Mac/10.5/en/8867.html
    The latter would appear to not relate to using 10.3, but something may be untested with that.
    Ernie

Maybe you are looking for

  • Is there a way to password protect an I-Mail Message?

    Is there a way to password Protect an I-Mail Message

  • How to use or create time variable in my case

    I want to design a report to calculate the number of employees every month by year according to employee subgroup. When users run this report, month variable will displayed prompt, after user input year, report will calculate the number of employees

  • Connection problem to the OVM Manager 3.0.3 Console

    My OVM Manager 3.0.3 installation was smooth on top of Oracle Linux 6.0, not even with a single error after taking care of some prerequisite warning stuff at the beginning. After the installation, it displayed some info on how to connect to the OVM M

  • [CS2/CS3] - TreeView observer attaching

    Hello,     I modified a sample called WLBCmp to create a list of checkboxes, but now I want to be able to observer this checkboxes selections throught my MakeNewDialogObserver which is used to observe my entire dialog. Now I added to resources:  Clas

  • Chat for Channel Partners in CRM 2007

    Hi Gurus, How can Chat facility be provided to Channel Partners in SAP CRM. Please tell the prerequisities to provide the facility in SAP CRM. The requirement is that the chat facility will be used by channel partners to chat with a central helpdesk