Script: Email a Friend

I'm looking for a script in order to "emailing a friend" a link to a webpage. I want the script to open up their default email program and drop the link in the body, a message in the subject and have a blank area for typing in an email address.
Does anyone happen to know of the script I need? Thx!

I don't think you'll get someone to test the script for you,
if that one
doesn't work for you, what about searching for one here:
http://www.hotscripts.com/search/11911704.html
that may work.
PS: and yes, be patient when asking a question please, people
here are busy
too :)
Nadia
Adobe� Community Expert : Dreamweaver
http://www.DreamweaverResources.com
|Tutorials|SEO |CSS Templates
http://www.csstemplates.com.au
http://www.adobe.com/devnet/dreamweaver/css.html
CSS Tutorials for Dreamweaver
>I have been trying to implement the following script:
>
>
http://www.tamingthebeast.net/articles3/tell-a-friend-script.htm
>
> Not sure what Im doing wrong, but it just wont work.
When I click on the
> tect
> to open the form in a pop up window, it says "page
cannot be found".
>
> Can anyone have alook at the script on the link and see
if they can get ot
> to
> work.
>
> Many thanks
> Pete
>

Similar Messages

  • Email a Friend

    Hello, I am trying to figure out how to properly incorporate an "email a friend" script into my website.  I have been able to get the link onto a website but have not been able to figure out how to track this information.  Basically I want to know who is emailing the link out and whatever other information that has been filled out.  How do I have to structure this HTML script to email me this information or to save it in some kin of form?

    No, there is nothing in the HTML code you could write.  More than likely what this will involve is server-side scripting to pass information from the form to the database or to another email or just as a BCC.  What needs to be done will vary from script to script.  If this is something you do not feel comfortable doing, you may want to look towards outsourcing this work because any help you get will require that you give someone access to the code.  Or if you got this script from a third party company you could contact their support team to see if what you want to do can be done with their script.

  • When I send emails, my friends told me my name doesn't appear in the "from" column. How do I solve this problem?

    when I send emails, my friends told me my name doesn't appear in the "from" column. How do I solve this problem?

    Badunit, thanks for your reply. I just went into Mail/Preferences/Accounts, "full name" field is filled correctly with my name. This happens to only certain recipients, and not every emails. Sometimes my name shows and sometime it doesn't show. And this only started to occur recently.

  • I thing I have some phishing going on, there has been some emails going around that I haven't sent plus getting emails from friends who haven't sent them, what to do?

    I think I have some phishing going on, there has been some emails I have received from people I know that haven't been sent also people have said I've sent out some when I haven't , how do I investigate this?

    What you describe is generally not an issue with your computer. Everyone gets phishing e-mails unless you or your ISP has blocked them.
    As for e-mails from friends that they didn't send, these are usually because someone insists on putting 200 address in their e-mails with a link to a cat video. If people used distribution lists or the bcc field for mass mailings, the chance of this is reduced. Probably one of your frineds has a Windows virus that is stealing e-mail addresses, or their hotmail. msn, or outlook account has been hacked.
    You probably don't need to do anything from your end

  • Scripts :EMail - gettiing 3 page data into 2 pages

    Hi all,
    I have created the layout using sap script for sales order and  when i see the print preview of sales order i can able to see th 3 pages in the layout in the NACE i have configured it to EMAIL so far i am getting email as per the design.
    Problem is that when  i click on print preview of email i can able to see all 3 pages of data  into 2 pages. half of second page data is displayed in first page which is not supposed to get on 2 pages , it should be displayed in 3 pages only.
    please help me out.
    Regards
    Venkat Boddu

    I dont think it will work....because as you said, it has wave type vector across all 5 pages then it is a single object which is not going to divide or split when moving pages.
    you have to manually divide the vector art in five section, put them on 5 pages ....and then when you will move the pages then artwork will move along the page.

  • Help with a script for elder friend

    First off, with apologies, I am not a script familar person at all.  I have an elderly friend who is switching to Mac for the first time.  I wanted a way to close all open programs, with a prompt to save any open files and then run a Time Machine backup and shut down - preferably without restarting next day with any windows opening automatically.  Time Machine is set to run every hour but she's a writer and could lose work if Time Machine doesn't run before shutting down for the night.  So I searched and found some small scripts that I tried to put together.  I think it works but after Time Machine runs it waits a very long time before shutting down.  I'm wondering if some of you kind folks could refine this for me.  (I do realize that automator has a quit all programs that I can save as an app but I'm trying to make this a one step 'app' process.)
    So what I have is this:
    tell application "System Events" to set the visible of every process to true
    set white_list to {"Finder"}
    try
              tell application "Finder"
                        set process_list to the name of every process whose visible is true
              end tell
              repeat with i from 1 to (number of items in process_list)
                        set this_process to item i of the process_list
                        if this_process is not in white_list then
                                  tell application this_process
                                            quit
                                  end tell
                        end if
              end repeat
    on error
              tell the current application to display dialog "An error has occurred!" & return & "This script will now quit" buttons {"Quit"} default button 1 with icon 0
    end try
    do shell script "/bin/bash -c '/System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd-helper > /dev/null 2>&1  &'"
    repeat
      delay 5
              if not IsProcRunning("backupd") then
                        ignoring application responses
                                  tell application "Finder" to shut down
                        end ignoring
                        exit repeat
              end if
    end repeat
    on IsProcRunning(theProc)
              try
                        do shell script "ps auxc | grep \"" & theProc & "\""
                        return true
              on error
                        return false
              end try
    end IsProcRunning
    .... frankly I don't understand most of this in reality but it's a need I'd like to help her with on her Mac Mini. 
    Many Thanks,
    Brenda

    First off, you're overthinking this.  There's no reason why your friend would lose any data by not backing up prior to shutdown (unless she has a flaky hard drive that needs to be replaced).  Assuming she's saving her work when she quits her apps, she should be fine.
    Second, trying to auto-quit applications is dangerous.  You don't check to see if any files need to be saved (there's no easy way to make that check anyway), and that in itself could cause data loss.
    Third, time machine has its own command line utility: tmutil.  There's no reason to script backupd.
    Last, if I remember correctly, whether or not apps and windows reopen at startup can be set on a system-wide or per-application basis.
    Give a clearer and more specific description of the goals you're trying to accomplish: what kind of apps are likely to be open, which of them will/might need to save data, what you want the machine to look like on restart, all with details.  That would help a lot.

  • When I receive email from friends it sometimes comes in with very small print, also attachments also attachments from those emails are in tiny print. Others are fine. Can some one help, please??

    can some one please help me change the font size for incoming emails? some emails are fine others are very small and I cannot change them to read or print?

    Welcome Margaret!
    How are you reading e-mail? in a browser (like Safari) or with a separate mail program like Apple Mail or MS Entourage?
    Entourage and Mail have  'larger/smaller" text commands. In either, typing command + or command - will zoom or shrink the text.
    The same commands work in the Safari browser.
    Much of this comes from people with small-screen devices sending to people with really large screens. I have a friend who asks all his contacts to use a larger font than default when they e-mail him. He has a really cantankerous Windows box that will not let him increase font size in received messages.
    If you have a 27-inch iMac the huge amount of screen real estate may make a lot of text hard to read. That's what I have, and I set the desktop resolution to a smaller number to get larger text. My 27-incher defaults to 2560x1440 and everything is small to my old eyes. I changed it to 1920x1080 and lost none of the sharpness but gained a lot in font size.
    If you want to try this, go to System Preferences > Displays and make sure the "Displays", not "Color" tab is active. Click the round button next to "Scaled" and you'll be offered a selection of desktop resolutions.
    Please let me know if I confused the issue!
    A

  • Why can't I send email to friends.

    I've been trying to send email to a friend but every time I click on the send box I always receive " sorry the message you sent has failed" why?  I have an IPad Air.

        We want to ensure your device is working properly while on Wi-Fi blackwes! Let's get to the bottom of your email concerns. What make and model device do you have? Have you ever been able to send or receive emails from your device while on WiFi? If so, when did this start happening?
    Thank You,
    MichelleL_VZW
    VZW Support
    Follow us on Twitter @VZWSUPPORT

  • Can't read microsoft email from friends

    Hello All,
    I'm new to mac and computers. My friends all have PCs and I have a new eMac.
    They send me email that includes pictures that were created or put together in Microsoft programs. When I go to look at the attachment an icon pops up that says I have to buy Microsoft Word or other programs.
    Is there anything I can do for free to see these, can my friends do something on their end to make it easier for me?
    Thanks,
    Barb

    Baba Ryan,
    welcome to the Apple Discussions!
    What program are you using for mail? If Apple's Mail, check the Mail area of the Discussions for setting Helper applications to open Microsoft Office files.
    You can try saving the attachments to a temporary items folder, then use a program you do have to open the file, clearing or saving the temporary folder contents as you wish afterwards. TextEdit will open MicroSoft Word .doc files. Preview can handle Windows .BMP images. You can ask you friends to send any images as JPEG (which has the advantage of being considerablly more compressed than BMP so the files will take up less space in your inbox). Or invest US$35 in Graphic Converter.
    If your friends are sending you PowerPoint slideshows, don't bother looking for an equivalent of the free Windows PowerPoint Viewer 2003; Microsoft hasn't updated their Mac version, PowerPoint Viewer 98, since the days when OS 9 was still a gleam on the horizon. Your eMac should have a copy of AppleWorks; use that to open the slideshow. Or download OfficeOffice instead. Or use Apple's Keynote if you have that.

  • How to have script email me when backup is done

    I have a cronjob that goes like this:
    5 0 * * * rsync -avzd --progress --delete --exclude '.wine/drive_c/Program\ Files' --exclude '.wine/drive_c/windows/temp' --exclude '.thumbnails' --exclude 'installs' /home/bobby/ [email protected]:backup/desktop/bobby/ >> /home/bobby/logs/webhomebackup-$(date +%m%d%y_%T).log
    Now how can I have a script or some means to email myself when the backup is done?? I really have no scripting skills, hehe. TIA for any help!
    P.S. I have mutt/getmail/procmail/sendmail/msmtp set up.

    colbert wrote:
    Dang I just tried msmtp, got this error:
    ~ # msmtp [email protected]
    msmtp: cannot set X509 trust file /home/bobby/.certs/Equifax_Secure_Certificate_Authority_DER.cer for TLS session: Base64 decoding error.
    msmtp: could not send mail (account default from /home/bobby/.msmtprc)
    ~ #
    I grabbed the file from the equifax site
    Here's my ~/.msmtprc which works fine with gmail.  I installed ca-certificates to get the tls_trust_file.
    account default
    host smtp.gmail.com
    protocol smtp
    auth on
    password *****
    from [email protected]
    user [email protected]
    tls on
    tls_starttls on
    tls_certcheck on
    tls_trust_file /etc/ssl/certs/ca-certificates.crt
    edit: You may need to run update-ca-certificates to generate the tls_trust_file
    Last edited by PeteMo (2008-08-15 19:28:57)

  • When I send emails to friends, all they get is unreadable messages. Why?

    All of my emails going out to different people are unreadable when they receive them. They all use different webmail , such as yourwebmail.org for their email client. Could this be the problem?
    They think I'm ignoring them. Any help will be greatly appreciated. Could I have accidentally set my email to be sent as a foreign language? I do have friends in Russia that I email. any answers will be greatly appreciated. Thank you. Warren

    As it turns out, they all were using the same web mail provider and it was hacked this past week. Thank you for all your help.

  • URL or LINK breaks into two lines when emailed to friends

    When I email the iWeb address to friends, they receive it in two sentences and can't seem to cut & paste the link/url to get the page to open..Here is what it looks like when emailed through Apple's mail.
    Here's the link:
    http://web.mac.com/cpalka/iWeb/%20Baseball%202007%20Site/Shooting%
    20Stars%20Party.html
    thx

    When I email the iWeb address to friends, they
    receive it in two sentences and can't seem to cut &
    paste the link/url to get the page to open..
    You can try putting your url between between brackets () in your emails, but better to change the site and page names to make it shorter and republish. In particular get rid of all the spaces represented by %20. For example, instead of naming your site " Baseballs 2007 Site", just call it bb7 or something. Instead of naming the page "Shooting Stars Party", just call it ssparty or something.

  • VB Script Email Signature

    I Hope someone Understand me :x
    i try to create a VB Script for automatically email signatures. I used a submission for that, but this is not the way I want it.
    QuellCode:
    ' Signature stuff
    strName = objUser.givenName + " " + objUser.sn
    strDepart = objUser.Department
    strDesc = objUser.Description
    strStreet = objUser.StreetAddress
    strLocation = objUser.l
    strPostCode = objUser.PostalCode
    strPhone = objUser.TelephoneNumber
    strMobile = objUser.Mobile
    strFax = objUser.FacsimileTelephoneNumber
    strEmail = objUser.mail
    strCompany = objUser.Company
    aQuote = Chr(34)
    aNewLine = Chr(11)
    If strCompany = "Dummyhausen" then
    strCompanyTitle = "Foobar company Dummyhausen"
    strCompanyWeb = "WEBSITE"
    Else 
    strCompanyTitle = "XXX GmbH & Co. KG"
    strCompanyWeb = "WEBSITE"
    End If
    Set objDoc = objWord.Documents.Add()
    Set objSelection = objWord.Selection
    Set objEmailOptions = objWord.EmailOptions
    Set objSignatureObject = objEmailOptions.EmailSignature
    Set objSignatureEntries = objSignatureObject.EmailSignatureEntries
    objSelection.Font.Name = "Arial"
    objSelection.Font.Size = 10
    objSelection.TypeText "Mit freundlichem Grüßen" + aNewLine
    objSelection.TypeText "i.A." & vbCrLf 
    if (strCred) Then objSelection.TypeText strCred & strName Else objSelection.TypeText strName
    objSelection.TypeText vbCrLf & vbCrLf
    ' Bold
    objSelection.Font.Bold = True
    objSelection.TypeText strCompanyTitle + aNewLine
    objSelection.Font.Bold = False
    ' not bold
    objSelection.TypeText vbCrLf & vbCrLf
    if (strCred) Then objSelection.TypeText strCred & strName Else objSelection.TypeText strName
    objSelection.TypeText aNewLine
    objSelection.TypeText vbCrLf
    objSelection.TypeText strStreet & aNewLine
    objSelection.TypeText strPostCode & " " & strLocation & aNewLine
    objSelection.TypeText "Tel: " & strPhone & aNewLine
    if (strFax) Then objSelection.TypeText "Fax: " & strFax & aNewLine
    if (strMobile) Then objSelection.TypeText "Mobil: " & strMobile & aNewLine
    objSelection.TypeText vbCrLf
    objDoc.Hyperlinks.Add objSelection.Range, "Mailto:" & strEmail, , , strEmail & aNewLine
    'objSelection.TypeText " && "
    objDoc.Hyperlinks.Add objSelection.Range, strCompanyWeb, , ,strCompanyWeb
    objSelection.TypeText vbCrLf
    objSelection.TypeText "________________________________"
    objSelection.TypeText vbCrLf & vbCrLf
    objSelection.TypeText "ABSPANN Deutsch"
    objSelection.TypeText vbCrLf & vbCrLf
    objSelection.TypeText "ABSPANN Englisch"
    objSelection.TypeText vbCrLf
    Set objSelection = objDoc.Range()
    ' full signature
    objSignatureEntries.Add "Full Signature", objSelection
    objSignatureObject.NewMessageSignature = "Full Signature"
    objDoc.Saved = True
    ' reply signature
    objSignatureEntries.Add "Reply Signature", objSelection
    objSignatureObject.ReplyMessageSignature = "Reply Signature"
    objDoc.Saved = True
    ' EOF
    This Look like This:
    Mit freundlichem Grüßen
    i.A.
    Max Mustermann
    Muster GmbH & Co. KG
    Max Mustermann
    Leipziger Straße 198
    12345 Musterhausen
    Tel: +491234567
    Fax: +491651651
    MAIL ADRESS
    ebsite
    ABSPANN Deutsch
    ABSPANN Englisch
    But I want this:
    Mit freundlichen Grüßen
    i.A. Max MUstermann
    MAIL ADRESS
    ebsite
    Musterfirma GMBH & Co KG
    FIRMENBEZEICHNUNG
    Musterstrasse
    Muster Ort
    Abspann Deutsch
    Abspann Englisch

    Yes - that is why we have this link:
    https://technet.microsoft.com/en-us/scriptcenter/dd772284
    Post back with a specific questions when you are ready.
    ¯\_(ツ)_/¯

  • I cant email yahoo friends why?this just started

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/853566]]</blockquote>
    I cant email my daughter at yahoo,nor can I access yahoo help line didI do something on firefox that is causing this problem as it has never happened before and there are no changes in my daughters email address,she has had it for 10 + years.Please help thanks Pam

    Hi lori2616,
    Thank you for your question. It sounds like there might be an issue with the clipboard, but I do not know exactly what might be preventing this. Did you make any recent changes to the Firefox configuration?
    If not please consider a Firefox Refresh. [[Recovering important data from an old profile]]
    The Refresh feature (called "Reset" in older Firefox versions) can fix many issues by restoring Firefox to its factory default state while saving your bookmarks, history, passwords, cookies, and other essential information.
    '''''Note:''' When you use this feature, you will lose any extensions, toolbar customizations, and some preferences.'' See the [[Refresh Firefox - reset add-ons and settings]] article for more information.
    To Refresh Firefox:
    # Open the Troubleshooting Information page using one of these methods:
    #*Click the menu button [[Image:New Fx Menu]], click help [[Image:Help-29]] and select ''Troubleshooting Information''. A new tab containing your troubleshooting information should open.
    #*If you're unable to access the Help menu, type '''about:support''' in your address bar to bring up the Troubleshooting Information page.
    #At the top right corner of the page, you should see a button that says "Refresh Firefox" ("Reset Firefox" in older Firefox versions). Click on it.
    #Firefox will close. After the refresh process is completed, Firefox will show a window with the information that is imported.
    #Click Finish and Firefox will reopen.
    Did this fix the problem? Please report back to us!
    Thank you.

  • I've approved a new address for my daughter (via parental control) to allow her to email her friend at least 10 times and still, no dice. Any suggestions?

    Approved the same address 10x and it won't accept it...help!!!

    I have the same problem on Mail 5.0, and I don't have a solution to this, but would like to add: two things are going wrong: 1: The "Always Allow" botton on the email banner that I receive, is inactive (that's probably why amyfromillinois isn't getting any response from the clicking). 2: I'm suppose to see another option on the email banner that reads "No Longer Allow" as explained in the program's help. That botton is not there.
    Is it possible that I have to be responding to these permission requests from an Adminstrator account within the same machine as my child's?

Maybe you are looking for