Windows Vista: Try to send hot mail and 5.1 crashes

Windows Vista: I try to send hotmail message & 5.1 crashes w/ message:WebKit2WebProcess.exe has stopped working.
Please help.

Use a Mac and all shall be fixed.
haha kidding.
Heres some other discussions here:
https://discussions.apple.com/thread/3194268?start=0&tstart=0
-Mac FX

Similar Messages

  • How can scripts and  smart forms send to mail and pdf?

    HI i want to know how script and smartforms will send to mail and pdf formates>?

    Dear Anees ,
                       Pleas pass on the parameter in itcpo - (getotf  ) structure while calling OPEN_FORM as 'X' .
    I have answered it in detail in your earlier post .
    also giving below sample program for sending SAPSCRIPT as PDFattachment in email  :
    REPORT zsapscript_pdf_via_mail MESSAGE-ID zvele LINE-SIZE 68
    NO STANDARD PAGE HEADING.
    TABLES: itcpo.
    Open your usual sapscript specifying that the output will be OTF
    itcpo-tdgetotf = 'X'.
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
    device = 'PRINTER'
    dialog = ''
    form = '............'
    language = sy-langu
    options = itcpo
    EXCEPTIONS
    canceled = 1
    device = 2
    form = 3
    options = 4
    unclosed = 5
    OTHERS = 6.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    window = '............'
    element = '............'
    EXCEPTIONS
    window = 1
    element = 2.
    DATA: BEGIN OF t_otfdata OCCURS 0.
    INCLUDE STRUCTURE itcoo.
    DATA: END OF t_otfdata.
    Closing the Sapscript, we save data (OTF) in a table
    CALL FUNCTION 'CLOSE_FORM'
    TABLES
    otfdata = t_otfdata
    EXCEPTIONS
    unopened = 1
    bad_pageformat_for_print = 2
    send_error = 3
    spool_error = 4
    OTHERS = 5.
    DATA: len_in LIKE sood-objlen,
    len_out LIKE sood-objlen.
    DATA: BEGIN OF t_pdfdata OCCURS 0.
    INCLUDE STRUCTURE solisti1.
    DATA: END OF t_pdfdata.
    DATA: BEGIN OF t_otfdata2 OCCURS 0.
    INCLUDE STRUCTURE solisti1.
    DATA: END OF t_otfdata2.
    Move OTF data to another table with lenght 255
    LOOP AT t_otfdata.
    CONCATENATE t_otfdata-tdprintcom t_otfdata-tdprintpar INTO t_otfdata2.
    APPEND t_otfdata2.
    ENDLOOP.
    Convert OTF format to PDF
    CALL FUNCTION 'SX_OBJECT_CONVERT_OTF_PDF'
    EXPORTING
    format_src = 'OTF'
    format_dst = 'PDF'
    devtype = 'PRINTER'
    FUNCPARA =
    len_in = len_in
    IMPORTING
    len_out = len_out
    TABLES
    content_in = t_otfdata2
    content_out = t_pdfdata
    EXCEPTIONS
    err_conv_failed = 1
    OTHERS = 2.
    Download on local directory
    *CALL FUNCTION 'WS_DOWNLOAD'
    EXPORTING
    BIN_FILESIZE = len_out
    FILENAME = 'c:\test.pdf'
    FILETYPE = 'BIN'
    TABLES
    data_tab = t_pdfdata.
    Mail settings
    DATA: objpack LIKE sopcklsti1 OCCURS 2 WITH HEADER LINE.
    DATA: objhead LIKE solisti1 OCCURS 1 WITH HEADER LINE.
    DATA: objbin LIKE solisti1 OCCURS 10 WITH HEADER LINE.
    DATA: objtxt LIKE solisti1 OCCURS 10 WITH HEADER LINE.
    DATA: reclist LIKE somlreci1 OCCURS 5 WITH HEADER LINe.
    DATA: doc_chng LIKE sodocchgi1.
    DATA righe_attachment TYPE i.
    DATA righe_testo TYPE i.
    DATA z_email(80) TYPE c.
    Receivers parameters
    SELECT-OPTIONS: s_email FOR z_email LOWER CASE NO INTERVALS.
    PARAMETERS rec_type LIKE reclist-rec_type
    DEFAULT 'U'. " type of sending address
    CLEAR: reclist, reclist[],
    objhead, objhead[],
    objtxt, objtxt[],
    objbin, objbin[],
    objpack, objpack[].
    Attachment filling
    LOOP AT t_pdfdata.
    objbin-line = t_pdfdata.
    APPEND objbin.
    ENDLOOP.
    DESCRIBE TABLE objbin LINES righe_attachment.
    Text filling
    objtxt = 'Testo della Mail - Riga 1'.APPEND objtxt.
    objtxt = 'Testo della Mail - Riga 2'.APPEND objtxt.
    objtxt = 'Testo della Mail - Riga n'.APPEND objtxt.
    DESCRIBE TABLE objtxt LINES righe_testo.
    Other filling
    doc_chng-obj_name = 'URGENT'.
    doc_chng-expiry_dat = sy-datum + 10.
    doc_chng-obj_descr = 'Prova invio Mail con PDF'.
    doc_chng-sensitivty = 'O'.
    doc_chng-doc_size = righe_testo * 255.
    CLEAR objpack-transf_bin.
    objpack-head_start = 1.
    objpack-head_num = 0.
    objpack-body_start = 1.
    objpack-body_num = righe_testo.
    objpack-doc_type = 'RAW'.
    APPEND objpack.
    objpack-transf_bin = 'X'.
    objpack-head_start = 1.
    objpack-head_num = 1.
    objpack-body_start = 1.
    objpack-body_num = righe_attachment.
    objpack-doc_type = 'PDF'.
    objpack-obj_name = 'TEST'.
    objpack-obj_descr = 'File.pdf'.
    objpack-doc_size = righe_attachment * 255.
    APPEND objpack.
    Receivers filling
    LOOP AT s_email WHERE sign = 'I'
    AND option = 'EQ'
    AND NOT ( low IS initial ).
    CLEAR reclist.
    IF sy-tabix > 1.
    reclist-copy = 'X'.
    ENDIF.
    reclist-receiver = s_email-low.
    IF rec_type IS INITIAL.
    reclist-rec_type = 'U'. " Internet e-mail
    ELSE.
    reclist-rec_type = rec_type.
    ENDIF.
    reclist-notif_del = 'X'. " request delivery notification
    reclist-notif_ndel = 'X'. " request not delivered notification
    APPEND reclist.
    ENDLOOP.
    Mail Send
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = doc_chng
    put_in_outbox = 'X'
    IMPORTING
    SENT_TO_ALL =
    NEW_OBJECT_ID =
    TABLES
    packing_list = objpack
    object_header = objhead
    contents_bin = objbin
    contents_txt = objtxt
    OBJECT_PARA =
    OBJECT_PARB =
    receivers = reclist
    CONTENTS_HEX =
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7

  • When I try to send e-mail I get an error message stating that the e-mail address was rejected by the server.  When I send to e-mail from another address, I get back an error saying the e-mail address is unknown.  My e-mail has worked fine for years until

    When I try to send e-mail I get an error message stating that the e-mail address was rejected by the server.  When I send to e-mail from another address, I get back an error saying the e-mail address is unknown.  My e-mail has worked fine for years until yesterday.  HELP!

    The specific text of the error message is very important here — I'm not sure exactly you're encountering here.
    If you're able to connect to your email server and are able send email to other email addresses and if the failures are specific to one email recipient address, then please contact the intended recipient of the failing email, and confirm their address is valid.  (This is the way I'm reading your question.)
    If you are unable to send any email to any other email addresses and this is specific to your email address, then try the web mail client interface (if one is available) to verify your login user and password, and check with your email ISP for assistance.  If your email password works via web mail, follow this Apple troubleshooting guide, then — if everything else fails — I'd probably then entirely remove the email account from Mail.app and re-add it per your email ISP's particular setup requirements.  (Some issue with the setup or maybe a corrupt setting in OS X or a problem at the mail ISP servers is a common problem, but this effects attempts to send to all email addresses via that account.)
    An email account setup is specific to an email provider, unfortunately.   If you're using one of the more common email ISPs, then there are usually setup guides and frequently-asked questions posted online.

  • Try to send e-mail

    Hello everyone! I try to send e-mail but get error. See attachments. Please, help me.
    Attachments:
    Send e-mail.JPG ‏21 KB
    Error.JPG ‏55 KB

    TECHNOFASE wrote:
    Hello
    i get the error -7 when is send this mail.
     _tmp1 = InetSendMail ("smtp.gmail.com", "[email protected]", "[email protected]", "Test Mail", "Prova", "");
    I create the mail with gMail but i can't send it.
    I try to send the same mail with LIVE MAIL and i send it (so no problem by the Mail Server).
    Can somebody help me ?
    Regards
    You have posted to the wrong forum. InetSendMail is a LabWindows function. This is the LabVIEW board, which is the graphical programming language. You need to post in the LabWindows board, which I see you've already done

  • HT4864 I have huge and returning problems with iCloud. I cannot send e.mails and there is nothing wrong with my settings. It started yesterday. Does anyone no the reason?

    What is wrong with Apple. This is the third time during autumn, that I experience problems with icloud. Apparently yesterday once again there was an outage with icloud and the problem was solved, but NO it is not solved. I still can not send e.mails and I am probably not the only one. Each time I talk to a technician from Apple, the only thing they do is to uninstall my icloud and reinstall it again. With no results. A waste of time. Please make your system work and give a better support. Who do I call to get a proper assistance???
    And why can I not select icloud under my products??

    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.

  • My iphone 4 wont send picture mail and my mms in on

    my iphone 4 wont send picture mail and my mms in on

    Are you trying to send the pic with Messages or Mail?
    If it's with Messages, this Apple doc might help ya out -> iOS: Troubleshooting Messages
    If it's with Mail, you may have to try another email provider or connecting to the Internet over another network.

  • Trying to send e-mail and error message " a copy has been placed in your outbox. the sender address was rejected by the server"

    trying to send e-mail and error message " a copy has been placed in your outbox. the sender address was rejected by the server"

    i have the same problem with my 3gs and tried to add my email acc+pass in the outgoing server but it got rejected.
    just bin on the phone(45min) with my carrier support about this issue they are pretty much scratching there head, the settings i should use gets verified with no problems when i add the outgoung server, but still cant send mails.

  • With ITunes in Windows Vista, I've attempted to drag and drop a homemade video folder but it doesn't show up in my ITunes library.  What should I be doing differently?

    With ITunes in Windows Vista, I've attempted to drag and drop a homemade video folder from my Desktop to ITunes on the PC in order to transfer it to my IPad (as per instructions), but it doesn't show up in my ITunes library.  What else should I be doing?

    Do you have any videos/movies in the video app?
    In iTunes if you right click on the video and select Get Info and go to the Option tap what Media Type is shown?

  • How to send automatic mail and put attache file on batch file ?

    how to send automatic mail and put attache file on batch file ?
    START MAILTO:[email protected]?SUBJECT=PHONE%CALL^&BODY=Testing

    Hi,
    Do you want to use a batch file to create new email message (including recipients, subject and email body) with attachments? If so, I'd recommend you post your question in the Scripting Guys forum for further assistance:
    https://social.technet.microsoft.com/Forums/scriptcenter/en-US/home?forum=ITCG
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Please feel free to let me know if I've misunderstood something.
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Mail and Address Book crash right after installing SL

    Installed on desktop and all worked perfect - love it!
    Installed on laptop (MacBookPro) and now Mail and Address Book crash at launch. I have removed the mail plist and the address book files indicated here elsewhere and nothing works. Any ideas????

    Fixed it. Created a new account, put my exchange mail on Mail on that account, sync Address Book with server, took the Sources folder and moved it to Address Book in Application Support onmy main account and now all work great. A lot of work but is now working. Thanks to all!

  • Why does firefox close every time I try to send email with Hot mail and I have no other problems?

    It looks like other people are having the same problem with Hotmail from the posts in the Hot mail forum. They suggested I contact support for my browser. I thought Firefox was the problem, I uninstalled it and installed the newest version. CC cleaner is used every time my computer reboots and Firefox is set to remove history each time it restarts. I defrag and shred free space weekly. My computer has no other issues whether on line or off. The problem of Hot mail crashing my browser/s started over a week ago. I am able to access my account/read/ click on links/delete/clear spam folder . . . . but the instant I click on reply, new, compose, (?) any browser will crash within 20 seconds. There have been no recent changes to my computer BEFORE Hotmail began crashing my browser/s. I have had {removed email address} for many years and this is the first time I have seen this happen. I do not receive error messages, it simply closes my browser. Firefox is my primary default browser. As I said Firefox was re-installed AFTER this started happening. I have 3 gmail accounts , they all work fine. I have too many contacts in my Hotmail account to open a new account with another provider. This is my personal email not business. It look as if a lot of people are having this same issue with Firefox?!?

    Does it help if you disable the plugin-container process?
    See http://kb.mozillazine.org/Plugin-container_and_out-of-process_plugins

  • Firefox unstable with Hot Mail and Windows Live Forum pages

    In URL (1) below, which is the Windows Live Help Forum, the page loads initially but does not complete loading. The tab heading (above the URL), keeps flickering and the page does not finish loading. Impossible to do any editing or making entries because even scrolling is not possible. The scroll bar cannot be controlled. Either, it cannot be moved or when moved it jumps back to where it was.
    In URL (2) below, which is my Hot Mail Inbox, the problem is similar but on a lesser scale. The tab heading (above the URL), is flickering very often which is distracting when typing an email etc. but the page is reasonably stable although it looks like the page is never completely loaded. There are times that the the page stabilizes after a while.
    Other internet web pages does not cause any problems.

    Nice link and suggestion Smirnoff.
    I assume that toolbar sits in the BTYahoo browser, (don't use it here) which is being phased out I think, so it's unlikely BT tech guys will do anything.
    Even if the toolbar is uninstalled the registry remains the same and auto log in to WLM does not work  so "Make Messenger Remember Me" could be a useful tool for those still irritated by this who turn to another browser.
    Value Added Guest (Inspiring Not Aspiring)
    Rate a post if you like it! - just click the star under the user's name on the left. (N.B. ratings facility no longer available in Forum Help and Suggestions; nor is it available in the Lounge)

  • My iTunes won't update on my computer. I have windows vista. I can open iTunes and when I click "check for updates" it asks if I want to update to iTunes 11.1.5 and I click "Download iTunes" but then nothing happens. What's wrong?

    My iTunes won't update on my computer. I have windows vista. I can open up itunes and when I click on "check for updates" it asks if I want to download iTunes version 11.1.5 and I click "Download iTunes" but then nothing happens. Sometimes uptop the loading bar will appear but for only a split second. I have tried restarting, shutting down, I cannot figure out why it won't download. What's happening and how do I fix it?

    Try updating using an iTunesSetup.exe (or iTunes64Setup.exe) installer file downloaded from the Apple website:
    http://www.apple.com/itunes/download/

  • My pc windows vista home system and Windows Vista Ultimate both service pack 2 and itunes do not recognize the ipod touch 4g, ios 5

    my pc windows vista home system and wndows vista ultimate boht service pack 2 and itunes do not recognize or do not see the ipod touch 4g ios 5. why'??'

    Windows Firewall is on.
    iTunes is NOT enabled in Windows Firewall.
    We'd better check on that, kris. If you enable iTunes in your Windows firewall, does that help with your connection? See the following document for instructions:
    How to enable iTunes in the Windows XP Firewall
    EDIT: Drat ... gave you the link to the wrong document. Try this one instead for your Vista:
    How to enable iTunes in the Windows Vista and Windows 7 Firewall
    Message was edited by: b noir

  • Can anyone explain what the other section section in the HDD usage description is for ? I recently used iphoto to send a mail and this "other "section inrease the usage by about 1GB....any ideas why ?

    Can anyone explain what the "other" (yellow colour) section in the HDD usage description is for and what it does.It is under the about this mac section and storage option?
    I recently used iphoto to send mail with photos attached and this "other" section increased by about 1GB. The mail size was around 900KB.....any ideas ?

    Shurig wrote:
    Thanks gor replying,,,this is my first time on this site.
    Any idea why the "other" continues to increase. I have just got got my mac so no new apps installed yet only been using it for mail and web browsing. I tried the iphoto mail last night and noticed the the "other" section had increased by 1GB which I thought was rather larger. Do you know what this setion actually does ?
    Also do you know if it is possible to delete the iphoto emails.
    All of your 'stuff' that is not Music Movies Apps Backups or Photos is in Other, that means all your emails, all your files etc, why don't you just leave well enough alone, this is not windows and doesn't need tinkering with,

Maybe you are looking for