Getting junk letters instead of photo in an email.

hi all
i am trying to send an email via gmail.com i am able to send an email but when i try to
send attachment so i am getting strange texts instead of photo
its not displaying photo but there is different format text is displaying in my box.
here is the result.
also getting this error but i am able to send email.
ERROR at line 1:
ORA-20000: Failed to send mail due to the
following error: ORA-29277: invalid SMTP operation
ORA-06512: at "MAIL.MAHI", line 159
ORA-06512: at line 2===============================================
--BACKUP.SECBOUNDContent-
Type: application/octet-streamContent-Disposition:
attachment; filename="g.gif"Content-Transfer-Encoding: base64
Qk2O5QgAAAAAADYAAAAoAAAAwgIAABMBAAABABgAAAAA
AFjlCAAAAAAAAAAAAAAAAAAAAAAAhNWuhNWuhNWuhNWu
hNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuh
NWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNW
uhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhN
WuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuh
NWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWu
hNWuhNWuhNWuhNWuhNWuhNWuhNWuhN
WuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuh
NWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNW
uhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhN
WuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNWuhNand here the link which is i followed to use with my codes....
Re: Sending UTL_SMTP mail with single jpg attachment issue
create or replace package body Mahi
       is
          -- Write a MIME header
          procedure write_mime_header (
              p_conn in out nocopy utl_smtp.connection
           , p_name in varchar2
            , p_value in varchar2
           is
          begin
            utl_smtp.write_data ( p_conn
                                 , p_name || ': ' || p_value || utl_tcp.crlf
         end;
         procedure mail (
            p_sender in varchar2
          , p_recipient in varchar2
           , p_subject in varchar2
           , p_message in varchar2
          is
            l_conn           utl_smtp.connection;
            nls_charset    varchar2(255);
           v_src_loc  BFILE := BFILENAME('BACKUP', 'Logon.jpg');
           --v_src_loc BLOB;
      l_buffer   RAW(54);
      l_amount   BINARY_INTEGER := 54;
      l_pos      INTEGER := 1;
      l_blob     BLOB := EMPTY_BLOB;
      l_blob_len INTEGER;
     v_amount   INTEGER;
              v_fname VARCHAR2(50);
     CURSOR img_cur IS SELECT photo_name,photo
  FROM temp_photo;
    --crlf  varchar2(2) := chr(10)||chr(13);
PROCEDURE send_header(pi_name IN VARCHAR2, pi_header IN VARCHAR2) AS
   BEGIN
      UTL_SMTP.WRITE_DATA(l_conn,
                          pi_name || ': ' || pi_header || UTL_TCP.CRLF);
   END;
         begin
            -- get characterset
            select value
            into   nls_charset
            from   nls_database_parameters
            where  parameter = 'NLS_CHARACTERSET';
            select
            photo into v_src_loc from
            temp_photo
            where id=1;
            DBMS_LOB.OPEN(v_src_loc, DBMS_LOB.LOB_READONLY); --Read the file
     DBMS_LOB.CREATETEMPORARY(l_blob, TRUE); --Create temporary LOB to store the file.
     v_amount := DBMS_LOB.GETLENGTH(v_src_loc); --Amount to store.
     DBMS_LOB.LOADFROMFILE(l_blob, v_src_loc, v_amount); -- Loading from file into temporary LOB
     --DBMS_LOB.COPY(l_blob, v_src_loc, v_amount);
     l_blob_len := DBMS_LOB.getlength(l_blob);
           -- establish connection and autheticate
           l_conn   := utl_smtp.open_connection (g_smtp_host, g_smtp_port);
            utl_smtp.ehlo(l_conn, g_smtp_domain);
             utl_smtp.command(l_conn, 'auth login');
             utl_smtp.command(l_conn,utl_encode.text_encode('[email protected]', nls_charset, 1));
            utl_smtp.command(l_conn, utl_encode.text_encode('xxxxx', nls_charset, 1));
             -- set from/recipient
              utl_smtp.command(l_conn, 'MAIL FROM: <'||p_sender||'>');
             utl_smtp.command(l_conn, 'RCPT TO: <'||p_recipient||'>');
            -- write mime headers
             utl_smtp.open_data (l_conn);
             write_mime_header (l_conn, 'From', p_sender);
            write_mime_header (l_conn, 'To', p_recipient);
            write_mime_header (l_conn, 'Subject', p_subject);
             write_mime_header (l_conn, 'Content-Type', 'text/plain; charset=us-ascii');
             write_mime_header (l_conn, 'X-Mailer', g_mailer_id);
             utl_smtp.write_data (l_conn, UTL_TCP.CRLF);
             UTL_SMTP.WRITE_DATA(l_conn,
                         'MIME-Version: 1.0' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         'Content-Type: multipart/mixed; ' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         ' boundary= "' || 'BACKUP.SECBOUND' || '"' ||
                         UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
             -- write message body
            utl_smtp.write_data (l_conn, p_message);
            OPEN img_cur;
  LOOP
  FETCH img_cur INTO v_fname,l_blob;
end loop;
close img_cur;
            UTL_SMTP.WRITE_DATA(l_conn,
                         '--' || 'BACKUP.SECBOUND' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         'Content-Type: text/plain;' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         ' charset=US-ASCII' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,  p_message || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         '--' || 'BACKUP.SECBOUND' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         'Content-Type: application/octet-stream' ||
                         UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         'Content-Disposition: attachment; ' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         ' filename="' || 'gpg.jpg' || '"' || --My filename
                         UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         'Content-Transfer-Encoding: base64' || UTL_TCP.CRLF);
    UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
  /* Writing the BLOL in chunks */
    WHILE l_pos < l_blob_len LOOP
      DBMS_LOB.READ(l_blob, l_amount, l_pos, l_buffer);
      UTL_SMTP.write_raw_data(l_conn,
                              UTL_ENCODE.BASE64_ENCODE(l_buffer));
      UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
       l_buffer := NULL;
       l_pos    := l_pos + l_amount;
     END LOOP;
     UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
    -- Close Email
    UTL_SMTP.WRITE_DATA(l_conn,
                         '--' || 'BACKUP.SECBOUND' || '--' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         UTL_TCP.CRLF || '.' || UTL_TCP.CRLF);
                         UTL_SMTP.CLOSE_DATA(l_conn);
                         utl_smtp.close_data (l_conn);
     UTL_SMTP.QUIT(l_conn);
     DBMS_LOB.FREETEMPORARY(l_blob);
     DBMS_LOB.FREETEMPORARY(l_blob);
     DBMS_LOB.FILECLOSE(v_src_loc);
                -- end connection
            utl_smtp.quit (l_conn);
                    exception
             when others
             then
               begin
                  utl_smtp.quit(l_conn);
                exception
                  when others then
                   null;
               end;
               raise_application_error(-20000,'Failed to send mail due to the
following error: ' || sqlerrm);
DBMS_LOB.FREETEMPORARY(l_blob);
DBMS_LOB.FREETEMPORARY(l_blob);
      DBMS_LOB.FILECLOSE(v_src_loc);
     raise;
         end;
      end;
      commit;Note:- i am using Stunnel,Oracle Database 11g R2 and OS is Linux...
I installed Linux on virtualBox.
please suggest me why i am getting strange text instead of photo?
if my code is wrong plz correct for me..
thanks in advance...
Mehwish
Student.
Edited by: Mehwish on Apr 15, 2011 10:57 PM

Your codes are very nice and easy to use but i am unlucky and i am not able to send  attachment
before i was not able to send even junk  text of photo but after using u r code
i am able to send that and i am near to solve my problem because of your nice guide and codes...
create directory backup as  '/u01/dump';
grant read,write on directory backup to mail,scott;
and goes this instead of picture.
Hi Meh --BACKUP.SECBOUNDContent-Type: application/octet-streamContent-Disposition:
attachment; filename="gpg.jpg"Content-Transfer-Encoding: base64 /9j/4AAQ
SkZJRgABAgAAZABkAAD/7AARRHVja3kAAQAEAAAAPgAA/+
4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAQEBgQEBgkGBQYJCgcGBgcKCwkJCg
kJCw8LDAwMDAsPDA0ODg4NDBERExMRERoZGRkaHR0dHR0dHR0dHQEGBwcMCw
wWDw8WGRQQFBkdHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dH
R0dHR0dHR0dHR0dHR0d/8AAEQgA+wG0AwERAAIRAQMRAf/EAKQAAAICAwEBAQ
AAAAAAAAAAAAECAAMFBgcECAkBAQEAAwEBAQAAAAAAAAAAAAABAgMEBQYHE
AABAwIEAwQGCAMFBgYDAAABAAIDEQQhMRIFQRMGUWEiB3GBoTJCFJGxwVJiI
xUIkjMk0XKCokPh8cJT
and i tried to use this code now.
create or replace package body mahi
       is
          -- Write a MIME header
          procedure write_mime_header (
              p_conn in out nocopy utl_smtp.connection
           , p_name in varchar2
            , p_value in varchar2
           is
          begin
            utl_smtp.write_data ( p_conn
                                 , p_name || ': ' || p_value || utl_tcp.crlf
         end;
         procedure mail (
            p_sender in varchar2
          , p_recipient in varchar2
           , p_subject in varchar2
           , p_message in varchar2
          is
            l_conn           utl_smtp.connection;
            nls_charset    varchar2(255);
           v_src_loc  BFILE := BFILENAME('BACKUP', 'Logon.jpg');
           --v_src_loc BLOB;
      l_buffer   RAW(54);
      l_amount   BINARY_INTEGER := 54;
      l_pos      INTEGER := 1;
      l_blob     BLOB := EMPTY_BLOB;
      l_blob_len INTEGER;
     v_amount   INTEGER;
              v_fname VARCHAR2(50);
    --crlf  varchar2(2) := chr(10)||chr(13);
PROCEDURE send_header(pi_name IN VARCHAR2, pi_header IN VARCHAR2) AS
   BEGIN
      UTL_SMTP.WRITE_DATA(l_conn,
                          pi_name || ': ' || pi_header || UTL_TCP.CRLF);
   END;
         begin
            -- get characterset
            select value
            into   nls_charset
            from   nls_database_parameters
            where  parameter = 'NLS_CHARACTERSET';
            select
            photo into v_src_loc from
            temp_photo
            where id=1;
            DBMS_LOB.OPEN(v_src_loc, DBMS_LOB.LOB_READONLY); --Read the file
     DBMS_LOB.CREATETEMPORARY(l_blob, TRUE); --Create temporary LOB to store the file.
     v_amount := DBMS_LOB.GETLENGTH(v_src_loc); --Amount to store.
     DBMS_LOB.LOADFROMFILE(l_blob, v_src_loc, v_amount); -- Loading from file into temporary LOB
     --DBMS_LOB.COPY(l_blob, v_src_loc, v_amount);
     l_blob_len := DBMS_LOB.getlength(l_blob);
           -- establish connection and autheticate
           l_conn   := utl_smtp.open_connection (g_smtp_host, g_smtp_port);
            utl_smtp.ehlo(l_conn, g_smtp_domain);
             utl_smtp.command(l_conn, 'auth login');
             utl_smtp.command(l_conn,utl_encode.text_encode('[email protected]', nls_charset, 1));
            utl_smtp.command(l_conn, utl_encode.text_encode('xxxxx', nls_charset, 1));
             -- set from/recipient
              utl_smtp.command(l_conn, 'MAIL FROM: <'||p_sender||'>');
             utl_smtp.command(l_conn, 'RCPT TO: <'||p_recipient||'>');
            -- write mime headers
             utl_smtp.open_data (l_conn);
             write_mime_header (l_conn, 'From', p_sender);
            write_mime_header (l_conn, 'To', p_recipient);
            write_mime_header (l_conn, 'Subject', p_subject);
             write_mime_header (l_conn, 'Content-Type', 'text/plain; charset=us-ascii');
             write_mime_header (l_conn, 'X-Mailer', g_mailer_id);
             utl_smtp.write_data (l_conn, UTL_TCP.CRLF);
             UTL_SMTP.WRITE_DATA(l_conn,
                         'MIME-Version: 1.0' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         'Content-Type: multipart/mixed; ' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         ' boundary= "' || 'BACKUP.SECBOUND' || '"' ||
                         UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
             -- write message body
            utl_smtp.write_data (l_conn, p_message);
            UTL_SMTP.WRITE_DATA(l_conn,
                         '--' || 'BACKUP.SECBOUND' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         'Content-Type: text/plain;' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         ' charset=US-ASCII' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,  p_message || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         '--' || 'BACKUP.SECBOUND' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         'Content-Type: application/octet-stream' ||
                         UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         'Content-Disposition: attachment; ' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         ' filename="' || 'gpg.jpg' || '"' || --My filename
                         UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         'Content-Transfer-Encoding: base64' || UTL_TCP.CRLF);
    UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
  /* Writing the BLOL in chunks */
    WHILE l_pos < l_blob_len LOOP
      DBMS_LOB.READ(l_blob, l_amount, l_pos, l_buffer);
      UTL_SMTP.write_raw_data(l_conn,
                              UTL_ENCODE.BASE64_ENCODE(l_buffer));
      UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
       l_buffer := NULL;
       l_pos    := l_pos + l_amount;
     END LOOP;
     UTL_SMTP.WRITE_DATA(l_conn, UTL_TCP.CRLF);
    -- Close Email
    UTL_SMTP.WRITE_DATA(l_conn,
                         '--' || 'BACKUP.SECBOUND' || '--' || UTL_TCP.CRLF);
     UTL_SMTP.WRITE_DATA(l_conn,
                         UTL_TCP.CRLF || '.' || UTL_TCP.CRLF);
                         UTL_SMTP.CLOSE_DATA(l_conn);
                         utl_smtp.close_data (l_conn);
     UTL_SMTP.QUIT(l_conn);
     DBMS_LOB.FREETEMPORARY(l_blob);
     DBMS_LOB.FREETEMPORARY(l_blob);
     DBMS_LOB.FILECLOSE(v_src_loc);
                -- end connection
            utl_smtp.quit (l_conn);
                    exception
             when others
             then
               begin
                  utl_smtp.quit(l_conn);
                exception
                  when others then
                   null;
               end;
               raise_application_error(-20000,'Failed to send mail due to the
following error: ' || sqlerrm);
DBMS_LOB.FREETEMPORARY(l_blob);
DBMS_LOB.FREETEMPORARY(l_blob);
      DBMS_LOB.FILECLOSE(v_src_loc);
     raise;
         end;
      end;
      Note:- i m using stunnel and sending email via gmail and my OS is linux and oracle database 11g R2.
i posted already in my previous post.
is tthere any format problem?
and also i am getting this error but i am able to send email which is getting properly in inbox.
ERROR at line 1:
ORA-20000: Failed to send mail due to the
following error: ORA-29277: invalid SMTP operation
ORA-06512: at "MAIL.Mahi", line 151
ORA-06512: at line 2

Similar Messages

  • Junk letters in foldernames

    Hi
    I use the default apache in OSX server 10.4.9.
    I have a ImageFolio4 installation that uses nothing but CGI-Perl, everything works fine except one thing, ImageFolio creates folders that are named by the user from within the webapp, but does not let me use non english characters.
    When i try to create a folder naming it with non english letters i get an "invalid argument" error message, if i name the folder with english letters there are no problems.
    I have one installation of ImageFolio4 on OSX server and one on IIS, and im frustrated to have to say that this problem only occurs on the OSX install.
    If i create the folder manually on the server, and then update the folder from within the webapp, the folder is added, but with junk letters instead of the swedish chars ö ä å.
    I have noticed that when i try to make folders using Terminal, ö ä å is not visible in the terminal window, just numbers, but on the server the folders are visible with the correct names, but in terminal the ä ö å is allways showed as numbers.
    Is there a connection here, cant OSX have folders created with non english letters except when i use finder?
    Mikael
    G5, Xserve, PB G4   Mac OS X (10.4.8)  
    G5, Xserve, PB G4   Mac OS X (10.4.8)  

    i feel you can do this by creating an image of the letters in paint and then follow this link
    Re: WATERMARK IN SAPSCRIPTS
    it contains about setting graphics in the background just like watermarks...
    hope it helps...
    do reward and get back if u need further assistance.

  • How can I get junk e-mail to go directly to junk folder instead of inbox?

    All of a sudden I am getting a lot of e-mails that I do not want and consider junk. I want them to go directly to my junk folder instead of my inbox. Ideally I would just like to eliminate them totally.

    Firefox is only a browser.You must contact your e-mail provider.
    Check the security settings for your account.

  • I cant get a photo project to email the moblile me address to someone else.  I know how, but it has stopped working for some reason.  Instead of pulling up the web address on the email form, it puts an error message?  Any ideas?

    I cant get a photo project to email the moblile me address to someone else.  I know how, but it has stopped working for some reason.  Instead of pulling up the web address on the email form, it puts an error message?  Any ideas?

    Michael,
    The link for the word 'HERE' directs to a Evergreen School District page, which outside of Mobile Me and/or Aperture. Your school district network might be intercepting the request from Aperture and displaying the 'network authentication page' that you see, instead of the email. I would get with the IT department to see if they can help you get around this.
    Have you also tried using the 'Tell a Friend' feature from another network location, like starbucks or your home?
    Cheers,
    Owen.

  • How do you get OS X to use iPhoto on camera import instead of Photos?

    Okay, have iPhoto 9.6.1 and can open iPhoto and all... but whenever I connect my camera to the computer to import photos, it always defaults to Photos.  I want it to default to iPhoto.  Is there a way to get it to stop using Photos by default?  Can't rename or delete the Photos app.  Have no Photos Library so I don't want to have to exit out of Photos and launch iPhoto every time I want to import new photos.  I just want Photos to stay out of the picture entirely.  Let iPhoto do what it used to do and stop trying to hijack everything.

    PMiles:
    Hard links are used in Photos to prevent duplication of media. You can verify that yourself by exporting some of your library to a small USB drive, enough to more than half fill the drive, then using Option Open to create a Photos library from the exported one. You'll note everything fits on the small drive. The use of hard links (multiple names for the same file) is what allows Time Machine to keep many many dates worth of backups without duplicating files that have not changed between dates.
    Also, here's a quote from David Pogues's review: https://www.yahoo.com/tech/everything-worth-knowing-about-switching-to-os-x-1101 29491789.html
    "What’s wild is that Photos accesses your existing photo library. It doesn’t convert the original photos into some new format. You’ll be able to switch back and forth among the three programs — iPhoto, Aperture, Photos — without having to duplicate any files or use up any more disk space.
    There is one big catch, however: Your library splits at the moment you install Photos.
    After you first run Photos, when you edit, add, or delete any pictures, those changes show up only in the one program you’re using at the time. New pictures you add to Photos appear only in Photos; new pictures you add to iPhoto appear only in iPhoto, and so on. (You can easily export/import them if necessary.) Same thing with edits you make: They’re saved only in the program where you make those changes."

  • I damaged my iphone 5 and have been sent a new one, but i do not have enough storage to back up my phone and do not want to pay for more storage. can i get all of my contacts, photos, etc. on my new phone just by logging into my icloud account?

    i damaged my iphone 5 and have been sent a new one, but i do not have enough storage to back up my phone and do not want to pay for more storage. can i get all of my contacts, photos, etc. on my new phone just by logging into my icloud account?

    Not photos, just data synced with iCloud shown in Settings>iCloud.  If you don't have sufficient storage to back up to iCloud, back up to your computer instead using iTunes (connect you phone to your computer, open iTunes, click on the name of your phone in iTunes, go to ths Summary tab of your iTunes sync settings and click Back Up Now).  Also transfer your purchases to your iTunes library (connect your phone to your computer, open iTunes and go to File>Devices>Transfer Purchases). If you have photo stream photos older than 30 days tha you wan to save, save these to your camera roll before backing up (tap Select, tap the photos, tap the share icon -- box with upward facing arrow, then tap Save to Camera Roll).
    When setting up your new phone, when given the option choose Restore from iTunes Backup and restore the backup you made earlier.

  • Can I print book with text blocks instead of photos?

    I have spent all day creating a book to print which included a photo on front, poems in place of photos on all pages (which I'd previously made into jpgs by creating layers in photoshop). I get to the ordering stage and I get an error window saying:
    DEFAULT TEXT: your book appears to have default text that has not yet been edited. Printed books will not include this text. Do you want to continue with your order?
    SO what does the above mean exactly?
    And is it not possible to print text pages instead of photos?
    Iphoto doesn't appear to give an open to type text on each page, but maybe iphoto 6 (iLife) does???
    And how come it's not possible to ship my order internationally?
    Thank you in advance for your help in answering my questions

    I haven't printed out an iPhoto book myself, but the message you are getting seems to indicate that you did not fill in some parts of page templates. If so, then those parts will print blank even though iPhoto shows them containing default text. You probably wanted them blank anyway, though.
    As for using iPhoto to print out a book with only one picture, that is probably doing things the hard way. If you want to print a book of text, there are now web options to do so costing about the same as an iPhono book. I don't think iPhoto is going to add templates sson for non-photo books.
    As for overseas shipping, that is probably an issue of duties and shipping costs. Many US sellers on the Web will ship only to the US or perhaps Canada.

  • Blue square instead of photo in email!

    Why can't I view pictures sent in email on my iPhone? It worked fine on my 3g, I now have a 3gs and I get a small blue square with a question mark inside instead of photos. Why is this? As far as I know the settings are the same. So frustrating - hope somebody can help!

    iphone3Gguy wrote:
    Add your email account to your husband iPhone and test. If he cannot see the image with your email on his iPhone then you know it is your email account.
    Smart move ! Hadn't thought of that

  • Getting junk character while creating PDF image for Hebrew language

    Hi,
    I have a issue while creating PDF image for invoice in Hebrew language . I can able to create a PDF image but it' showing junk characters instead of Hebrew characters.
    Please provide your inputs to resolve this issue.
    Thanks,
    Joy.

    Hi ,
    I am also facing similar problem.My system is unicode enabled and i am using the device type I8SWIN and courier font .
    But still i am getting junk characters for Hebrew characters in PDF.
    Can any one suggest me what is the exact device type we have to use for unicode enabled system and also for non unicode enalbled system.
    Is any related to truetype font here .Kindly let me know .
    Thanks for your valuable inputs .
    PRadeep....

  • Wired letters instead of hebrew

    We wrote a servlet that prints letters in different languages. In order to print the letters, we use:
    PrintWriter out = response.getWriter();
    out.println(letters);
    When we runs the servlet, the servlet prints wired letters instead of hebrew:
    for example:
    =?windows-1255?Q?=EE=...
    the problem is that we need to read the letters that was printed with other program. So, instead to read the hebrew letters, it read wired things.
    How do we make the servlet prints hebrew??
    (we using hebrew and english letters)
    please help us.
    thanks, Naor and Shay.

    It depends on the data and encoded data and the encoding used for output.
    In jsp, you can use <%@page %> to specify the charset (UTF-8) and then set the locale (Hebrew).
    Example jsp file:
    <%@ page contentType="text/html; charset=UTF-8"%>
    <%@ page import="java.util.*"%>
    <%
    String hebrewString = ...... the hebrew string, eg: you get this from database, etc .... ;
    Locale locale = ..... Hebrew locale instance, check it at java.util.Locale javadoc ....;
    response.setLocale(locale);
    %>
    <HTML>
    <%=hebrewString%>
    </HTML>
    If this prints wrongly, then either you use wrong charset/encoding or the hebrew string is not constructed properly (eg: your database doesn't support UTF-8, so when you save the data previously, the string was actually corrupted, etc).
    If you can you write hebrew, you can make it straight like this:
    <%@ page contentType="text/html; charset=UTF-8"%>
    <%@ page import="java.util.*"%>
    <%
    Locale locale = ..... Hebrew locale instance, check it at java.util.Locale javadoc ....;
    response.setLocale(locale);
    %>
    <HTML>
    .. Barukh Haba B'shem Adonai (in hebrew script) ..
    </HTML>
    You may use richedit or IDE which support UTF-8 ( not ANSI! ) to create the jsp file. ANSI editor which will corrupt the text you entered.
    In XP, the notepad for microsoft is able to save the text using UTF-8, this editor can be used safely.
    By default, IE have encoding for Hebrew, so it should show up correctly. If you're using linux/unix or different browser, perhaps you need to download the encoding first to be able to display correctly.
    If you don't know how to write hebrew, go to any hebrew website, copy some text and paste it in UTF-8 editor. If you see the word correctly pasted, then it supports UTF-8. Then, you can create the JSP file I mentioned above.
    rgds,
    Alex

  • I am having trouble importing photos, gets stuck on the same photo each time?!?

    I am having trouble importing almost 3000 pics from my phone to my computer. Start up disk should be fine, cleaned it up before I began.  Import gets stuck on the same photo each time I try the import.  I have had to force quit a few times, and it can't seem to get past that same picture near the end.  Please help?!? It never gives me an error, it just keeps spinning and nothing is importing.

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.Click the Clear Display icon in the toolbar. Then take one of the actions that you're having trouble with. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Images download to iPhoto instead of Photos

    I had downloaded Photos and out of stupid curiosity, opened iPhoto back up to look for something.  Since then, all of my new images download automatically into iPhoto instead of Photos.  I want them to download into Photos on my Mac.  How do I get this back?

    Nope.  Didn't work, Eric.  Every time I right click on an image to download and click on "Download to Photo", it opens up iPhoto and places it in there.

  • Every time I open Iphoto I get the following message:  "A photo has been found in the iPhoto library that was not imported.  Do you want to import it?  Yes or No"  Any suggestions?

    Every time I open Iphoto I get the following message:  "A photo has been found in the Iphoto library that was not imported.  Does anyone have any suggestions?

    Quit iPhoto and to to the iPhoto library (by default in your pictures folder) - right click (control click) on it and select show package contents - find the folder named import (on importing) and drag it to the desktop - DO NOT MAKE ANY OTHER CHANGES - launch iPhoto and you will be fine.
    Open the import(ing) folder and if there is nothing in it that you need move it to the trash and empty the trash
    LN

  • Incoming emails going to junk folder instead of inbox

    i I have an iPad and every time my sister emails me it goes into the junk folder instead of the inbox. Is there a setting I need to change?

    Just move the message back to your inbox and her emails won't appear in "Junk" anymore. You probably confused "Trash" with "Junk".
    -Ethan

  • How to get existing albums to iCloud photo library

    My boss is a home builder and he needs albums of homes across his devices and I'm looking for a solution for getting the albums of photos across the devices.  Any thoughts?  The photos are currently synced from iTunes and when I turn on iCloud Photo Library, it says its going to delete those photos.  Whats the best way to get them in the mix?

    Given that it is a beta product - which i certainly understand - it still doesn't seem to work as it has been described.
    I have updated to iOs 8.1 on my iPhone 5 and iPad 4; I have approximately 1000 photos which are in albums on the devices, and which I have backed up to my computer. Here is what happens when I turn on iCloud photo library:
    I get the warning about removing photos from the device and downloading optimized versions back to the device.
    The upload begins, but only selects 50 or 60 photos, and NOT just limited to those which remain in my camera roll.
    Only that upload lands on icloud.com.  The other 900 or so just seem to drop into space, and can only be found on my computer.
    Only those 50 or 60 are downloaded back to the device.
    I swear with great vigor and volume, and restore my computer back up to the device.
    I have the sense that there is some obvious step I'm missing, because this just does NOT seem to way this service is supposed to work, and I would think even a beta would work as described.  But I've tried this multiple times on both devices, with the same result.  I had great hopes that iPL would work as it seemed to be described and get me out of backing up to my computer, to Google Plus, and to Onedrive.  Apparently not, at least not yet.
    Would be deeply grateful for any advice.

Maybe you are looking for

  • App-v 5.0 Sequence package that requires reboot?

    Hi, I'm sequecing a package that requires a reboot. When I do the reboot, I cannot continue packaging (it does not give me the option to continue). Please advise. J. Jan Hoedt

  • IOS5 Bug

    Trying to select one date for the month of September, 1978, it seems that it is not possible to do that. The only available date is September, 1 1978. This is impacting any app asking to select, for example, the birthdate. This seems to be a bug on i

  • Question on workflow agent assignement

    Hi Gurus, I am triggering a workflow from a fm 'sww_wi_start_simple' . In this I am sending group of agents in agents container. In the workflow swdd. How I have to declare agents table  in workflow conatiner. please guide me. it is throughing the in

  • Doubts in VKOA

    Dear SAP Gurus, Please clarify me on the following part in FI-SD integration part. 1) While maintaining the entries in VKOA tables viz., C721 or C722 or C726, we provide two GL accounts (last two columns). One for revenue and another one for provisio

  • Override Link Class in "Other CSS" Box

    Hi -is there a way to override the class of a link in the "other styles" box for a component? My example is this: I use a skin with a dark header. The text for the widgets in the header are white (Administration, etc) The body of the site is white. W