Hyperlink in mail message gets changed

I'm having trouble mailing webpage addresses. If I copy and paste an address into an email the entire thing does not get underlined so when recipients click on it they don't get the entire address. If I use mail/edit/add hyperlink and paste the address into the hyperlink address box, it gets changed; after the % extra characters are getting pasted in.
anyone else having this problem or know what to do about it?
thanks!
iBook G4   Mac OS X (10.4.7)  

They get added because when replying, or forwarding
an e-mail you get quotes added as well as spaces.
And e-mail programs don't deal with long strings of
text very well.
thanks for the help! I'm a regular subscriber to tinyurl now! My next problem is figuring out how to get my movies viewed by folks.

Similar Messages

  • From time to time, my outgoing mail messages get stuck in the "outbox".  I'm having trouble resolving the problem.

    From time to time, my outgoing mail messages get stuck in the "outbox".  I'm having trouble resolving the problem.

    I use Comcast. My computer (Mac Air) also uses my iCloud and Me accounts. The message I get back says they are all offline.

  • How to change the color of hyperlinks in Mail messages?

    I want to change the text color of hyperlinks in the message itself, not in a signature. Mine are all pale blue.
    I'm using Yosemite on a Mac Mini.

    reese9,
    Check this thread:
    http://discussions.apple.com/thread.jspa?threadID=705812&tstart=0
    Mark

  • Find & replace in HTML mail message to change color

    I have a script someone wrote for me to automatically print my school's attendance list when it comes into my inbox. I have a very limited understanding of AppleScript, but it seems to clean up the message and then send it to print. The one thing I would like to change is the color of the banner at the top of the page which is blue (coded cyan in the html) since it keeps using up all of the blue ink in my printer before the other colors. I am pasting the script below. How can I include some lines that will change cyan to gray or even white?
    Anthony
    on performmailaction(info)
    tell application "Mail"
    set selectedMessages to |SelectedMessages| of info
    repeat with eachMsg in selectedMessages
    set theSource to source of eachMsg as text
    set AppleScript's text item delimiters to (ASCII character 10) & (ASCII character 10)
    set theSource to text items 2 thru -1 of theSource as text
    set AppleScript's text item delimiters to "=" & (ASCII character 10)
    set theSourceItems to text items of theSource
    set AppleScript's text item delimiters to ""
    set theSource to theSourceItems as text
    set AppleScript's text item delimiters to "=3D"
    set theSourceItems to text items of theSource
    set AppleScript's text item delimiters to "="
    set theSource to theSourceItems as text
    set AppleScript's text item delimiters to "=20"
    set theSourceItems to text items of theSource
    set AppleScript's text item delimiters to " "
    set theSource to theSourceItems as text
    set AppleScript's text item delimiters to "</HTML>"
    set theSource to text item 1 of theSource as text
    set AppleScript's text item delimiters to "<PRE>"
    set theSourceItems to text items of theSource
    set AppleScript's text item delimiters to ""
    set theSource to theSourceItems as text
    set AppleScript's text item delimiters to "</PRE>"
    set theSourceItems to text items of theSource
    set AppleScript's text item delimiters to ""
    set theSource to theSourceItems as text
    set theFile to open for access (((path to desktop folder) as text) & "Mail_tmp.html") with write permission
    set eof of theFile to 0
    write theSource & "</HTML>" to theFile starting at eof
    close access (((path to desktop folder) as text) & "Mail_tmp.html") as file specification
    tell application "Finder"
    print alias (((path to desktop folder) as text) & "Mail_tmp.html")
    delete alias (((path to desktop folder) as text) & "Mail_tmp.html")
    end tell
    end repeat
    tell application "TextEdit"
    quit
    end tell
    end tell
    end performmailaction

    Hello
    As my goal is only to check that what I wrote runs correctly, I commented all your code which is not of "my responsability".
    I ran the "stripped code" and got exactly what was wished: the words "Date:" and "Subject:" are in bold while all the remaining text is in plain .
    At this time I am unable to apply Times to the plain text.
    You may check the "stripped script" and when you will be convinced that this piece of code does its duty, you will have to search what is the wrongdoer in your own code.
    -- [SCRIPT]
    tell application "Mail"
    activate
    set selectedMessages to the selected messages of front message viewer
    set saveFolder to choose folder with prompt "Please pick an empty folder for me to store the manuscript information:"
    tell application "Finder"
    set parentFolder to folder saveFolder
    set parentFolderPath to parentFolder as Unicode text
    end tell -- to Finder
    repeat with aMessage in selectedMessages
    properties of aMessage
    set messageSender to sender of aMessage
    set messageSubject to subject of aMessage
    set messageSent to date sent of aMessage as string
    set messageContent to content of aMessage
    if (messageSender is "[email protected]") and (messageSubject begins with "manuscript #") then
    -- Get manuscript number from message subject after '#'
    set oldDelimiter to my SwitchDelimiterTo({"#"})
    set manuscriptNumber to last text item of messageSubject
    my SwitchDelimiterTo(oldDelimiter)
    log "NOTE: Email for manuscript #" & manuscriptNumber
    -- Make the folder in which to store the stuff for this manuscript;
    -- variable "manuscriptFolder" will point to place to store files
    tell application "Finder"
    try --ignore problems with folder creation, like existing folders/files
    set manuscriptFolder to make new folder in parentFolder with properties {name:manuscriptNumber}
    on error errorName number errorNumber
    if errorNumber is -48 then -- Folder already exists
    log "NOTE: folder " & parentFolderPath & manuscriptNumber & " already exists."
    set manuscriptFolder to folder manuscriptNumber in parentFolder
    end if
    end try
    end tell -- to Finder
    set manuscriptFolderPath to manuscriptFolder as Unicode text
    set messageFileName to manuscriptFolderPath & "email.rtf"
    log "NOTE: Saving manuscript to file: " & messageFileName
    -- Use TextEdit to construct an RTF file of the message to print out later
    set messageSent to "mardi 13 mars 2007"
    set messageSubject to "sujet du message"
    set messageContent to "blablabla…"
    tell application "TextEdit"
    activate
    close every document saving no
    set aDocument to make new document at beginning of documents
    set fontReg to "Courier New"
    set fontBold to "Courier New Bold"
    set font of aDocument to fontReg
    -- Assemble the document using the clipboard and pasting
    -- Stick in "Date:"
    set the clipboard to "Date:"
    my triggerCmdKey("v", "TextEdit") -- Cmd-v, paste
    set font of last word of document 1 to fontBold
    -- Stick in date string
    set the clipboard to tab & tab & messageSent & return
    my triggerCmdKey("v", "TextEdit") -- Cmd-v, paste
    -- Stick in "Subject:" and boldify it
    set the clipboard to "Subject:"
    my triggerCmdKey("v", "TextEdit") -- Cmd-v, paste
    delay 1
    set font of last word of document 1 to fontBold
    -- Stick in the subject
    set the clipboard to tab & messageSubject & return & return
    my triggerCmdKey("v", "TextEdit") -- Cmd-v, paste
    -- Stick in the message content
    set the clipboard to messageContent & return
    my triggerCmdKey("v", "TextEdit") -- Cmd-v, paste
    -- Save the document as an RTF in the messageFileName
    tell front document
    save in messageFileName
    end tell -- to front document
    end tell -- to TextEdit
    else
    log "Message from \"" & messageSender & "\" with subject \"" & messageSubject & "\" will not be processed."
    end if
    end repeat
    end tell -- to Mail
    -- Change the text item delimiter and return the existing ones
    on SwitchDelimiterTo(delimiterList)
    local x
    set x to (get AppleScript's text item delimiters)
    set AppleScript's text item delimiters to delimiterList
    return x
    end SwitchDelimiterTo
    -- Trigger a System Event for a Command-<key> in the named application
    on triggerCmdKey(k, appName)
    tell application appName to activate
    tell application "System Events" to tell application process appName to keystroke k using {command down}
    end triggerCmdKey
    --[/SCRIPT]
    Yvan KOENIG (from FRANCE jeudi 15 mars 2007 21:09:53)

  • Mail message gets garbled... but only when sent with attachment to Android?

    I'm getting heat from my employer because I use a Mac and he doesn't (I use an iPhone and he uses an Android, see the consistency??). Regardless. When I send an email with windows-friendly attachment, he receives it fine on his PC, but on his Android, the message is garbled (attachment fine). If I log in via Safari to DeskPilot (our corporate email client) and send the same message and attachment, all is fine. Oh, and if we really want to get odd, a co-worker does the same thing and his message comes though empty, not garbled.
    Ideas, thoughts? This is causing a major migraine for me.
    Thanks very much!

    Perhaps I should have been a little bit clearer why I want to be able to send mail via my local mail/postfix system: I have several servers set up on my iMac, in particular:
        apache
        trac
    I want these servers to be able to send mail to, e.g.,
        webmaster@localhost
        root@localhost
        trac@localhost
    I have created aliases for these addresses in:
        /etc/postfix/aliases
    (I have also executed "newaliases"). These aliases all point to my own user account on the same machine (my iMac).
    Finally, I have a .forward file at the root level of my OS X account that forwards all local Unix mail to my normal e-mail account handled by my ISP.
    This way, all local mail sent to "webmaster2, "root", "trac", etc., should be sent to my normal e-mail address that I monitor with Mail.app.
    *This all worked perfectly with Mac OS X 10.4.x,* so I know it should be possible. However, I have only now just tried to set this up 10.5.x (Leopard) and, clearly, I am having problems.
    Perhaps this motivation for wanting to send e-mail via the Unix mail system will help others understand my situation, and I hope someone can point me in the right direction. Thanks very much in advance.

  • Adding hyperlinks to mail messages

    I want to send a text trigger hyperlink message in mail to advertise my .Mac podcast. Manytimes the link that I send will not go to the proper address, AKA the .Mac can't find the page screen. The address is:
    http://web.mac.com/robcork/iWeb/Rob%20Cork%27s%20Music/Podcast/Podcast.html
    This is a paste directly from Safari. I would like to use a trigger word like, Rob's podcast that will open the users browser and take them to the page. All attempts using the obvious "add hyperlink" have as of yet failed. Advice?
    20" iMac Intel Core Duo   Mac OS X (10.4.7)   1.5 GB RAM. 160 & 250 GB LaCie fire wire external HDs. 20G iPod

    Well I don't want to send in plain text - and it seems like it should be configurable somewhere. Undocumented plist tweak?
    I am using Mail Attachment Iconizer, and MailTags - but neither of these plugins have any influence on this behaviour.
    I'm not sure what you mean when you say you don't see this behaviour. If you just type in a full URL, then start a new line, then after a few seconds mail will automatically build a link into the URL text.
    Steve

  • Send Outgoing Mail Messages not working

    I'm having trouble with a workflow that creates a new mail message, gets specified iCal items, creates a summary text file, attaches to mail message and then sends mail message. Everything is working except the mail message does not get sent. There are no logged error messages. I've experimented with changing up the order of the actions and noticed that when I place "Send Outgoing Messages" directly after "New Mail Message", the message gets sent without a problem. However in order for my workflow to make sense I need to have many intermediary steps before I trigger the send messages action.
    Any clues on this problem. Thanks in advance.
      Mac OS X (10.4.7)  

    Cascanuit-
    I'm relatively new to Automator as well and by no means a programmer. It does seem that the iCal actions available are pretty meager. I did a search at www.automatorworld.com and there are a few additional actions but none that call out specific menu items.
    Another way to approach your desired workflow is to create an applescript that selects Export... from the File Menu. I know very little beyond the basics of applescript but I did cobble together the following:
    tell application "iCal" to activate
    tell application "System Events"
    tell application process "iCal"
    set frontmost to true
    click menu item "Export…" of menu 1 of menu bar item "File" of menu bar 1
    delay 4
    tell application "System Events"
    keystroke return
    end tell
    end tell
    end tell
    Here's the weird part. This script works, but only sporadically. Sometimes it stalls at the selection of the Export button in the dialog box. I have no idea why it sometimes works and other times fails.
    If someone could refine this script to make it bullet proof than you can simply incorporate it as an automator workflow and then save the created export file to another volume or anywhere you like.
    Hope this helps some.

  • I changed my gmail password after suspicious activity was detected.  It works fine on my computer but my iphone 5 doesn't recognize my new password ("cannot get mail" message).  I've tried changing my phone settings to the new password, but no good.

    I changed my gmail password after suspicious activity was detected.  It works fine on my computer but my iphone 5 doesn't recognize my new password ("cannot get mail" message).  I've tried changing my phone settings to the new password, but no good.

    Hello there dinadinadina,
    It sounds like you have modified the password settings for your Gmail account after changing the password. Thats where I would have started too. Next I would restart the device and test it one more time, and then remove and add the account again in Settings:
    Get help with Mail on iPhone, iPad, and iPod touch
    Restart your iOS device.
    Delete the affected email account from your device.
    Tap Settings > Mail, Contacts, Calendars.
    Tap the affected email account.
    Tap Delete Account.
    Add your account again.
    Thank you for using Apple Support Communities.
    Take care,
    Sterling

  • Mail not getting all messages from server and other strange behavior

    Hello All,
    Mail has been doing some odd things for me of late (at least the last week) and I'm lost for a solution to my problem. As far as I can tell, perhaps my Prefs. have become corrupted, or at least something in relation to Mail has become corrupted. Perhaps someone has a solution to this issue before I have to back it all up and NUKE the whole **** app to get back up and running properly.
    The main issue I appear to be having is that Mail is not getting all of my Mail messages from my server. I can log into my web-mail interface provided by my domain host and can see there that there are many e-mails that don't appear to be coming down the pipe to the Mail.app client. I'm getting some e-mail's but not all....
    *Here are all the things that I've checked:*
    • The missing e-mails are not being picked up as Junk and are not in the Junk folder
    • I have done a search within Mail for the missing e-mail's and nothing turns up anywhere.
    • I have checked on the server end that I'm not maxing out my InBox or that there are any other service issues from my domain host provider.
    • I have been into Prefs and checked my account settings - most (see below) of which appear to be as normal and are fine.
    *Here are the weird things that I've noticed:*
    • When I went into the Prefs. for the account in question, I noticed that my login had changed. For example - it usually it is "[email protected]", however it had seemed to have changed to just "johndoe" - I know this wasn't me as my domain host will not allow me to access any mail unless the login is the full mail address.
    • In RULES, every rule I double click to check on seems mostly fine, apart from the fact that every "Account is:" the pull down menu just appears as blank. Usually it says "Account is: ([email protected])"
    It's there last 2 items that make me think something is corrupted - so I guess my question is, what pref or file has corrupted and how can I fix it without having to give Mail.app a digital enema?
    Any assistance would be most helpful - missing some but not all your incoming e-mail messages is quite annoying, as you can guess...!
    Thanks,
    Boz

    Hello Boz.
    This appears to be a rules issue. Mail is almost certainly downloading those messages, but they’re probably being processed by your rules in an unexpected way — given the information you’ve provided, maybe because there is something wrong with the file where the account settings are stored.
    Do you have any Mail plug-ins? In the Finder, go to each of the following folders (if they exist). What do you see there?
    /Library/InputManagers/
    /Library/Mail/Bundles/
    ~/Library/InputManagers/
    ~/Library/Mail/Bundles/
    To make accurately reporting this information easier, you may open /Applications/Utilities/Terminal, type the following command (you can just copy it here and paste it in Terminal), and press <Return>. You can then copy the output of that command from Terminal and paste it in your reply to this post:
    ls -1 /Library/InputManagers /Library/Mail/Bundles ~/Library/InputManagers ~/Library/Mail/Bundles
    <hr>
    Verify/repair the startup disk (not just permissions), as described here:
    The Repair functions of Disk Utility: what's it all about?
    After having fixed all the filesystem issues, if any, and ensuring that there’s enough space available on the startup disk (a few GB, plus the space needed to make a backup copy of the Mail folder), try this:
    1. Write down your Mail > Preferences > Accounts settings or take screen shots of them.
    2. If you have a .Mac account and .Mac synchronization of Mail data is enabled either in Mail > Preferences > General or in System Preferences > .Mac, disable it before proceeding.
    3. Quit Mail.
    4. Make a backup copy of the ~/Library/Mail folder, just in case something goes wrong while trying to solve the problem. You can do this in the Finder by dragging the Mail folder to the Desktop while holding the Option (Alt) key down, for example. This is where all your mail is locally stored.
    5. In the Finder, go to ~/Library/Preferences/. Locate com.apple.mail.plist and move it to the Desktop (to be deleted if this solves the problem). If you have a backup of your data that includes a working copy of this file, you may try restoring it from the backup to avoid steps 6-8.
    6. Open Mail. You’ll have to set up your non-.Mac accounts from scratch all over again. If given the option to import existing mailboxes or something like that, don’t. Just enter the account information and Mail will automagically rediscover the data in ~/Library/Mail/ when done.
    7. You’ll have to re-configure some of your Mail > Preferences settings. For spam-related security reasons, the first thing you should do is go to Preferences > Viewing and disable Display remote images in HTML messages if it’s enabled.
    8. As a side effect of re-creating com.apple.mail.plist, Mail might rename Outbox (which is where messages waiting to be sent are stored) to Delivered. The name of that mailbox is actually a misnomer, as it would contain messages (if any) that couldn’t be delivered for some reason. You can delete that mailbox if you wish.
    9. If the problem is fixed now and .Mac synchronization of Mail data was enabled at the beginning, enable it again, go to System Preferences > .Mac > Advanced, click Reset Sync Data, and choose the appropriate options to reset the Mail data stored on the .Mac server with the data locally stored on the computer, i.e. sync data must flow from the computer to the .Mac server.
    <hr>
    Note: For those not familiarized with the ~/ notation, it refers to the user’s home folder. You can easily locate any of the folders referred to in this post by copying the folder path here, doing Go > Go to Folder in the Finder, and pasting the folder path there.

  • When I try to open live hot mail I get this message:The Windows Live Network is unavailable from this site for one of the following reasons:

    When I try to open live hot mail I get this message: The Windows Live Network is unavailable from this site for one of the following reasons:
    * This site may be experiencing a problem
    * The site may not be a member of the Windows Live Network
    You can:
    * You can sign in or sign up at other sites on the Windows Live Network, or try again later at this site.
    However, when I open hot mail in IE it opens just fine. Tried changing the password as suggested but it did not help in Firefox.

    Clear the cache and the cookies from sites that cause problems.
    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"

  • How can I prevent Mail from Getting Messages Automatically?

    I want to stop Apple Mail from getting new messages until I click on the "Get Mail" button.
    This is proving hard to achieve.
    In Mail Preferences, I have set Check for New Messages to "Manually."
    This does nothing.
    Additionally, I went to each account, went into the Advanced tab and unchecked "Include when automatically checking for new messages."
    This also changed nothing.
    This should be fairly easy to achieve, and yet it is not. Any thoughts on how I can set this up? I have one iCloud account, one Google Apps via IMAP account and one generic IMAP account. They all seem to ignore the settings for message fetching.
    I am running OS X Yosemite 10.10.2. Apple Mail version 8.2 (2070.6).
    Mid-2011 iMac 21.5", 16GB Ram, 2.5 GHz Quad-Core i5.

    Same issue since Mavericks.

  • Embedding a hyperlink in a New Mac Mail message

    I know about Edit -> Add Hyperlink. But I'm astonished that dragging a favicon from a browser into the text area of a new message just drags the "dead" text --- furthermore, under certain circumstances, if you select the dead text, then Edit Hyperlink, an old, stale, inappropriate URL may be still be in the Edit Hyperlink box.
    This is a recipe for creating misleading/phishing links.
    Am I missing something? Is there an easier way to get a live URL into a Mac Mail message?
    Thanks .. cb

    Gentoo, that does the trick nicely! A simple double click of the folder name does indeed bring up the text box for editing.
    A big thank you for pointing that out, and i am sure there will be others wondering the same thing, so hopefully they will see your answer.
    Sorry for delay in answering, i had not subscribed to the thread thinking that there was no way of doing it, so another thanks for sending me the pm letting me know you had answered.
    Cheers,
    Steve.

  • When trying to log into yahoo mail, I get the message saying 'The page isn't redirecting properly'. I deleted history/ restarted firefox. How can this be fixed?

    When trying to log into yahoo mail, I get the message saying 'The page isn't redirecting properly'. I deleted history/ restarted firefox. How can this be fixed?

    If it works in Safe Mode and in normal mode with all extensions (Firefox/Tools > Add-ons > Extensions) disabled then try to find which extension is causing it by enabling one extension at a time until the problem reappears.
    Close and restart Firefox after each change via "Firefox > Exit" (Windows: Firefox/File > Exit; Mac: Firefox > Quit Firefox; Linux: Firefox/File > Quit)
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Why can't I get my mail, I get a message "connection to server failed" but I can get on all other web sites.  It worked fine until about a month ago.

    WHY CAN'T I GET MY MAIL, I GET A MESSAGE 'CONNECTION TO SERVER FAILED" BUT I CAN GET ON ALL OTHER WEB SITES.  IT WORKED FINE UNTIL ABOUT A MONTH AGO.  I CANCELLED MY ACCOUNT, PUT MY INFO IN AGAIN AND STILL GET THE MESSAGE "CONNECTION TO SERVER FAILED"  HELP PLEASE!

    have you tried removing and readding the e-mail account? sometimes settings get corrupted or changed on the server end...something computers can sometimes handle better than the mail interface.

  • Cannot get mail message, then later I get mail

    Cannot get mail message for all accounts, then later without doing anything I get my mail a couple of hours late. Have screen shot but can't seem to insert it here.

    Hello there dinadinadina,
    It sounds like you have modified the password settings for your Gmail account after changing the password. Thats where I would have started too. Next I would restart the device and test it one more time, and then remove and add the account again in Settings:
    Get help with Mail on iPhone, iPad, and iPod touch
    Restart your iOS device.
    Delete the affected email account from your device.
    Tap Settings > Mail, Contacts, Calendars.
    Tap the affected email account.
    Tap Delete Account.
    Add your account again.
    Thank you for using Apple Support Communities.
    Take care,
    Sterling

Maybe you are looking for

  • Recommended First Battery Charge

    Hi everyone. Im receiving my 8Gb iphone tomorrow and I was wondering how long should I leave it charging for the first time? Ive seen many of you having problems with battery life and Ive looked everywhere but Apple doesnt state anything. With all my

  • Base Unit Of Measurement error

    Dear Sir \ Mam, Our some materials base unit of measurement is in KG, and we want to make bills, excise RG1 entry in KG for milligram sales or material transfer. How to go for such transaction, system is not allowing for such transactions. Pls Note :

  • How to install Maverick on new HDD before replacing current Without Original OS X Disk

    Hello Community, I am looking for some advice / help. I have a Mac mini Early 2009, I want to replace 120GB Drive with a new larger drive, how do I setup Maverick on the new drive before swapping out. I do not have my original OS X Disk, I have purch

  • File is in itunes but won't sync to touch

    The file will play in itunes but when I try to move it to the ipod touch it says 'file cannot be read'.  I connected my ipod to my old computer and it works great.  New computer just won't have it.  Any ideas?

  • AXF_SOAPCALL  response error 302 Moved Temporarily

    DECLARE STRREQUEST VARCHAR2(32767); strResponse VARCHAR2(32767); BEGIN STRREQUEST :='<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Header> <Security xmlns="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecur