How to attach a file that exisiting in server to email

Hi all,
I have to attach a file from server to email .I need not to upload that file i just want to attach the file which is in the server to email (.TXT format) .can any one help me in this issue?

yes u can . Check out the code below. This is not my code and i found this from net and this is the code that i use as reference when i go for mailing programs.This code will help u to send PDF & TIFF . U can always modify the file type. The comments will not be in english but u can understand from the program flow.
FORM ENVIAMENT_CORREU
  USING  PAGINA1
         PAGINA2.
  DATA: FRONTEND_SERVICES TYPE REF TO CL_GUI_FRONTEND_SERVICES.
  DATA: T_PDF TYPE TABLE OF SOLI,          "Contingut del .pdf
        T_TIF TYPE TABLE OF SOLI,          "Contingut del .tif
        T_ANN TYPE TABLE OF SOLI.          "Suma d'annexos
  DATA: L_ANN TYPE SOLI.                   "Línia estandard d'un annex
  DATA: TAM_PDF TYPE I,                    "Línies del .pdf
        TAM_TIF TYPE I,                    "Línies del .tif
        TAM_ANN TYPE I.                    "Línies dels annexos
  DATA: ELPATH         TYPE STRING.        "Per convertir tipus
  DATA: NOMFITXER(255) TYPE C,             "Per separar nom i extensió
        EXTENSIO(3)    TYPE C,             "Extensió/tipus del fitxer
        ESBORRAR(128)  TYPE C.             "Per esborrar
  DATA: TEXTS LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE,
        LIN_TEXT TYPE I.
  DATA: OBJPACK LIKE SOPCKLSTI1 OCCURS 0 WITH HEADER LINE.
  DATA: DOC_CHNG LIKE SODOCCHGI1.
  DATA: ENVIAT LIKE SONV-FLAG.
  DATA: REMITENT  LIKE SOEXTRECI1-RECEIVER,
        DADESUSER TYPE TABLE OF BAPIADSMTP WITH HEADER LINE,
        BAPIRETUR TYPE TABLE OF BAPIRET2 WITH HEADER LINE.
------------------ANNEXOS-------------------
1 - el .pdf
  ELPATH = PAGINA1.  "Canvi de tipus
Fem servir objectes perquè la funció GUI_UPLOAD
ens la dona com a obsoleta. Encara que el mètode
cridat la fa servir, és de suposar que quan SAP
elimini la funció, canviarà el mètode.
  IF FRONTEND_SERVICES IS INITIAL.
    CREATE OBJECT FRONTEND_SERVICES.
  ENDIF.
  CALL METHOD FRONTEND_SERVICES->GUI_UPLOAD
    EXPORTING
      FILENAME                = ELPATH
      FILETYPE                = 'BIN'
      READ_BY_LINE            = ' '
    IMPORTING
      FILELENGTH              = TAM_PDF
    CHANGING
      DATA_TAB                = T_PDF
    EXCEPTIONS
      FILE_OPEN_ERROR         = 1
      FILE_READ_ERROR         = 2
      NO_BATCH                = 3
      GUI_REFUSE_FILETRANSFER = 4
      INVALID_TYPE            = 5
      NO_AUTHORITY            = 6
      UNKNOWN_ERROR           = 7
      BAD_DATA_FORMAT         = 8
      HEADER_NOT_ALLOWED      = 9
      SEPARATOR_NOT_ALLOWED   = 10
      HEADER_TOO_LONG         = 11
      UNKNOWN_DP_ERROR        = 12
      ACCESS_DENIED           = 13
      DP_OUT_OF_MEMORY        = 14
      DISK_FULL               = 15
      DP_TIMEOUT              = 16
      NOT_SUPPORTED_BY_GUI    = 17
      OTHERS                  = 18.
  IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
2 - el .tif (o el que sigui)
  ELPATH = PAGINA2.  "Canvi de tipus
Fem servir objectes perquè la funció GUI_UPLOAD
ens la dona com a obsoleta. Encara que el mètode
cridat la fa servir, és de suposar que quan SAP
elimini la funció, canviarà el mètode.
  IF FRONTEND_SERVICES IS INITIAL.
    CREATE OBJECT FRONTEND_SERVICES.
  ENDIF.
  CALL METHOD FRONTEND_SERVICES->GUI_UPLOAD
    EXPORTING
      FILENAME                = ELPATH
      FILETYPE                = 'BIN'
      READ_BY_LINE            = ' '
    IMPORTING
      FILELENGTH              = TAM_TIF
    CHANGING
      DATA_TAB                = T_TIF
    EXCEPTIONS
      FILE_OPEN_ERROR         = 1
      FILE_READ_ERROR         = 2
      NO_BATCH                = 3
      GUI_REFUSE_FILETRANSFER = 4
      INVALID_TYPE            = 5
      NO_AUTHORITY            = 6
      UNKNOWN_ERROR           = 7
      BAD_DATA_FORMAT         = 8
      HEADER_NOT_ALLOWED      = 9
      SEPARATOR_NOT_ALLOWED   = 10
      HEADER_TOO_LONG         = 11
      UNKNOWN_DP_ERROR        = 12
      ACCESS_DENIED           = 13
      DP_OUT_OF_MEMORY        = 14
      DISK_FULL               = 15
      DP_TIMEOUT              = 16
      NOT_SUPPORTED_BY_GUI    = 17
      OTHERS                  = 18.
  IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
Acumulem annexos!
  LOOP AT T_PDF INTO L_ANN.
    APPEND L_ANN TO T_ANN.
  ENDLOOP.
  LOOP AT T_TIF INTO L_ANN.
    APPEND L_ANN TO T_ANN.
  ENDLOOP.
Tamanys
  DESCRIBE TABLE T_PDF LINES TAM_PDF.
  DESCRIBE TABLE T_TIF LINES TAM_TIF.
  DESCRIBE TABLE T_ANN LINES TAM_ANN.
Remitent i Text del correu
  SELECT SINGLE *
    INTO T_DESTI
    FROM ZMAILDEST
    WHERE TCODE = SY-TCODE
      AND ZCOMPT = 0.
  IF SY-SUBRC = 0.
    REMITENT = T_DESTI-ZDESTI.
    IF T_DESTI-ZTEXT1 IS NOT INITIAL.
      TEXTS = T_DESTI-ZTEXT1.
    ELSE.
      TEXTS = 'Adjunt trameto l''expedient indicat.'.
    ENDIF.
    APPEND TEXTS.
    IF T_DESTI-ZTEXT2 IS NOT INITIAL.
      TEXTS = T_DESTI-ZTEXT2.
      APPEND TEXTS.
    ENDIF.
    IF T_DESTI-ZTEXT3 IS NOT INITIAL.
      TEXTS = T_DESTI-ZTEXT3.
      APPEND TEXTS.
    ENDIF.
  ELSE.
Busquem adreça de l'usuari
    CALL FUNCTION 'BAPI_USER_GET_DETAIL'
      EXPORTING
        USERNAME = SY-UNAME
      TABLES
        RETURN   = BAPIRETUR
        ADDSMTP  = DADESUSER.
    READ TABLE BAPIRETUR WITH KEY TYPE = 'E'.
    IF SY-SUBRC NE 4.
      MESSAGE E039 WITH
        'No es pot determinar remitent. Enviament avortat.'.
    ELSE.
trobat
      READ TABLE DADESUSER INDEX 1.
      REMITENT = DADESUSER-E_MAIL.
    ENDIF.
Si venim per aquí, no tenim text especificat...
    TEXTS = 'Adjunt trameto l''expedient indicat.'.
    APPEND TEXTS.
  ENDIF.
  DESCRIBE TABLE TEXTS LINES LIN_TEXT.
Assumpte
  CONCATENATE 'TB Núm. Expedient:'
              ZACEXPEDI-NUMEXPED
    INTO TEXTS SEPARATED BY SPACE.
  DOC_CHNG-OBJ_NAME = 'URGENT'.
  DOC_CHNG-EXPIRY_DAT = SY-DATUM + 10.
  DOC_CHNG-OBJ_DESCR = TEXTS.
  DOC_CHNG-SENSITIVTY = 'O'.
  DOC_CHNG-DOC_SIZE = LIN_TEXT * 255.
Capçalera
  CLEAR OBJPACK-TRANSF_BIN.
  OBJPACK-HEAD_START = 1.
  OBJPACK-HEAD_NUM = 0.
  OBJPACK-BODY_START = 1.
  OBJPACK-BODY_NUM = LIN_TEXT.
  OBJPACK-DOC_TYPE = 'RAW'.
  APPEND OBJPACK.
Annex 1
Separem nom i extensió per tal d'obtenir els tipus
  NOMFITXER = PAGINA1.
  CALL FUNCTION 'SPLIT_FILENAME'
    EXPORTING
      LONG_FILENAME  = NOMFITXER
    IMPORTING
      PURE_EXTENSION = EXTENSIO.
  OBJPACK-TRANSF_BIN = 'X'.
  OBJPACK-HEAD_START = 1.
  OBJPACK-HEAD_NUM = 1.
  OBJPACK-BODY_START = 1.
  OBJPACK-BODY_NUM = TAM_PDF.
  OBJPACK-DOC_TYPE = EXTENSIO.
  OBJPACK-OBJ_NAME = 'pagina1'.
  CONCATENATE 'pagina1' EXTENSIO
    INTO NOMFITXER SEPARATED BY '.'.    "un altre cop junts
  OBJPACK-OBJ_DESCR = NOMFITXER.
  OBJPACK-DOC_SIZE = TAM_PDF * 255.
  APPEND OBJPACK.
Annex 2
Separem nom i extensió per tal d'obtenir els tipus
  NOMFITXER = PAGINA2.
  CALL FUNCTION 'SPLIT_FILENAME'
    EXPORTING
      LONG_FILENAME  = NOMFITXER
    IMPORTING
      PURE_EXTENSION = EXTENSIO.
  OBJPACK-TRANSF_BIN = 'X'.
  OBJPACK-HEAD_START = 2.
  OBJPACK-HEAD_NUM = 2.
  OBJPACK-BODY_START = TAM_PDF + 1.
  OBJPACK-BODY_NUM = TAM_TIF.
  OBJPACK-DOC_TYPE = EXTENSIO.
  OBJPACK-OBJ_NAME = 'pagina2'.
  CONCATENATE 'pagina2' EXTENSIO
    INTO NOMFITXER SEPARATED BY '.'.    "un altre cop junts
  OBJPACK-OBJ_DESCR = NOMFITXER.
  OBJPACK-DOC_SIZE = TAM_TIF * 255.
  APPEND OBJPACK.
VLR - 13/04/2005
Canvi per funció SO_DOCUMENT_SEND_API1
és una funció obsoleta, però ens permet canviar
el remitent
  CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
    EXPORTING
      DOCUMENT_DATA                    = DOC_CHNG
      PUT_IN_OUTBOX                    = 'X'
      SENDER_ADDRESS                   = REMITENT
      SENDER_ADDRESS_TYPE              = 'SMTP'
      COMMIT_WORK                      = ' '
    IMPORTING
     SENT_TO_ALL                      = ENVIAT
  NEW_OBJECT_ID                    =
  SENDER_ID                        =
    TABLES
      PACKING_LIST                     = OBJPACK
  OBJECT_HEADER                    =
      CONTENTS_BIN                     = T_ANN
      CONTENTS_TXT                     = TEXTS
  CONTENTS_HEX                     =
  OBJECT_PARA                      =
  OBJECT_PARB                      =
      RECEIVERS                        = DESTINATARIS
   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
     OTHERS                           = 8.
CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
   EXPORTING
     DOCUMENT_DATA                    = DOC_CHNG
     PUT_IN_OUTBOX                    = 'X'
     COMMIT_WORK                      = 'X'
   IMPORTING
     SENT_TO_ALL                      = ENVIAT
  NEW_OBJECT_ID                    =
   TABLES
     PACKING_LIST                     = OBJPACK
  OBJECT_HEADER                    =
     CONTENTS_BIN                     = T_ANN
     CONTENTS_TXT                     = TEXTS
  CONTENTS_HEX                     =
  OBJECT_PARA                      =
  OBJECT_PARB                      =
     RECEIVERS                        = DESTINATARIS
  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
    OTHERS                           = 8.
  IF SY-SUBRC <> 0.
    MESSAGE E041
      WITH '(' SY-SUBRC ') No s''ha pogut enviar el correu.'.
  ENDIF.
  Esborrem annexos
  ESBORRAR = PAGINA1(128).
  CALL FUNCTION 'GUI_DELETE_FILE'
    EXPORTING
      FILE_NAME = ESBORRAR
    EXCEPTIONS
      FAILED    = 1
      OTHERS    = 2.
  ESBORRAR = PAGINA2(128).
  CALL FUNCTION 'GUI_DELETE_FILE'
    EXPORTING
      FILE_NAME = ESBORRAR
    EXCEPTIONS
      FAILED    = 1
      OTHERS    = 2.
ENDFORM.                    "enviament_correu

Similar Messages

  • How to attach a file (PDF etc.) to an email?

    Hi
    I need to attached a file to an email, how do I do this does anyone know?
    Files such as pictures, pdf etc.

    Until a week ago I was using an 18 mth old HTC3600 with Windows Mobile. I had a bunch of files stored on the 2Gb SD card that I'd send clients... pdf, word, ppt, excel... using a standard POP email with Windows Mobile settings to send/receive every 30 min via 3G. I could also receive emails with an attachment, then bluetooth it to my laptop to read. I cant do any of this basic stuff with the iPhone. Unless the method is that different that I can't see it, the iPhone is no good for business on the go... especially considering I cant sync my tasks from Outlook 2007 either! Help, somebody... anybody!!!

  • I am having a problem with the FireFox browser. I have attached two files that best describe the problem. I have labeled them A & B. A is the way it should lo

    I am having a problem with the FireFox browser. I have attached two files that best describe the problem. I have labeled them A & B. A is the way it should look and B is what happens after I have I opened several tabs. I can get it back to normal if I click on VIEW than click on customize. When the customize window appears FireFox returns to its normal state. I than click on the done box and go back to what I have been doing. I tried resetting FireFox back to default settings, but that did not correct the problem.
    This began happening about a month ago. Is there a way I can fix this problem? Thanks for your help.I don't know how to attach my 2 attachments that shows the problem I am having.
    [email address removed to protect your privacy and security]
    <! [email protected] -->

    I found the images here: https://support.mozilla.org/en-US/questions/977542#answer-501598

  • How to attach multiple file in one mail

    Hi,
    I've problems with sending multiple files via Gmail account (Ipad version)  When sending the photo or video, I've to just click the photo and choose send to mail one by one. Any simpler way?  Sometimes i did sent both mpg and jpg but the reciepient didn't see any attachment too
    Anyone can help advise how to attach different file (doc, video, photo) in one mail will be a lot appreciated. Thank you so much

    You can attach multiple pictures to an email on an ipad2. Don't know about original iPad.
    Choose a photo or take a screen shot (hold down home button and button next to volume control at same time--screen shot now will appear in photos).
    Go to photos and edit your picture or screen shot, save it, then hold down on the image and copy it.
    Go to mail, create a new mail and paste it in.
    Save you mail as a draft.
    Go back to photos and select a different photo, copy it, and return to your draft, and paste it in. Repeat if you need to add more.
    Anything that you can take a screen shot or have an photo of can be pasted in one at a time into that draft email.
    If mail gets uncooperative, during this process, then double click on home button and quit multitasking mail, then open up mail again and send your draft. Uncooperative means gets frozen.

  • How to attach input file in the Test Script in SECATT in ECC6 ?

    Hi ,
    How to attach input file in the Test Script in ECC6  in Tcode SECATT ?
    For Testing in SECATT in ECC6, how to attach input file which contains multiple records ?
    Best Regards,
    Padhy

    Hi and Welcome to the Community!
    Since you have balance, and the issue is in your Work domain, you need to work with your server admins, as it's possible they are forbidding (via IT Policy) the ability to do as you desire.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to attach a file to the mail

    How to attach a file to the mail

    I know that this can be done when going to any PDF program and push (send as  email)
    This also can done with multiple files or even with separate pages from that PDF file (Many programs can do that, like: PDF expert, Adobe Reader, iBooks, PDF Provider, Documents, etc)
    But what if I begin to wright an email, then I wanted to attach a file (such as PDF, or word, or any file) , FOR BASIC APPLE MAIL IT IS UNAVAILABLE
    You can attach Photo or Video but not PDF or other document
    There are some email programs that can attach files to email such as my.mail (as you can see from the photo)
    But why Apple don't provide such simple service ???

  • Hi, I am user iPad and I do not know how can attach a file into email e.g. CV.  Thanks

    Hi,
    I am user iPad and I do not know how can attach a file into email e.g. CV. 
    Thanks

    You attach files within the app that creates the file or within the app that the file is saved. For example you email photos from within  the Photos App itself. Typically there will be an action icon within the app - an arrow icon many times - you tap on that to bring other options like Share - then Email.
    Attachments must be mailed within the apps themselves.

  • How to attach doc file in email

    How to attach doc file in email

    Hi and Welcome to the Community!
    Since you have balance, and the issue is in your Work domain, you need to work with your server admins, as it's possible they are forbidding (via IT Policy) the ability to do as you desire.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to attatchment some files that are in other server to send an email?

    Hi
    I need to send an enmail with sql, but i have to attatchment some files, those files are in anohter server, so I want to know, how attatchment those files? 
    Thanks in advance 

    Yeah, I don't know if you can attach a file on a remote server.  Why not just copy it over to the SQL Server machine, and attach it form there (which would be the local machine when the file is downloaded).
    Please see this for info about using email in SQL Server.
    Create account, permission account, and send Email from SQL Server Express:
    http://www.sqlservercentral.com/blogs/querying-microsoft-sql-server/2013/09/02/sending-mail-using-sql-server-express-edition/
    Check email event log, and remove unsent emails from server
    http://www.dotnet-tricks.com/Tutorial/sqlserver/4761260812-Remove-unsent-database-email-from-SQL-Server.html
    Troubleshoot email error message:
    http://www.mytechmantra.com/LearnSQLServer/Troubleshooting-SQL-Server-blocked-access-to-procedure-sp_send_dbmail.html
    When you get your email processes working fine, download the file using C#.
    http://www.microsoft.com/en-us/download/details.aspx?id=34673
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Net;
    using System.IO;
    namespace ConsoleApplication2
    class Program
    static void Main(string[] args)
    string localPath = @"C:\Downloads\";
    string fileName = "your_file.txt";
    FtpWebRequest requestFileDownload = (FtpWebRequest)WebRequest.Create("ftp://ftp.server.com/" + fileName);
    requestFileDownload.Credentials = new NetworkCredential("your_username", "your_password");
    requestFileDownload.Method = WebRequestMethods.Ftp.DownloadFile;
    FtpWebResponse responseFileDownload = (FtpWebResponse)requestFileDownload.GetResponse();
    Stream responseStream = responseFileDownload.GetResponseStream();
    FileStream writeStream = new FileStream(localPath + fileName, FileMode.Create);
    int Length = 2048;
    Byte[] buffer = new Byte[Length];
    int bytesRead = responseStream.Read(buffer, 0, Length);
    while (bytesRead > 0)
    writeStream.Write(buffer, 0, bytesRead);
    bytesRead = responseStream.Read(buffer, 0, Length);
    responseStream.Close();
    writeStream.Close();
    requestFileDownload = null;
    responseFileDownload = null;
    Sorry if this is a little more complex than what you were looking for, but I think this is the easiest way to do it.  :0
    Knowledge is the only thing that I can give you, and still retain, and we are both better off for it.

  • How can I access files that I moved from an older MacBook Pro to a newer one via Firewire and Migration assistant.  The files show up on the new MacBook but cannot be opened.  Thanks!

    How can I access files that I moved from an older MacBook Pro to a newer one via Firewire and Migration assistant?  The files show up on the new MacBook but cannot be opened.  Thanks!

    Get info then check permissions then add your curent user name (it was probably different on old Mac) and give your username full read/write permissions.

  • How to get PDF file that has been transformed into docx into my filing system so I can work on it???

    How can I get the PDF file that was transformed into a docx file into my filing system to be able to work on it and translate it as the customer requested?

    THanks for your reply.
    Well what happens is I bought the program. It gives you a button to click,
    you log in and then a box opens up asking you to select the file, I go into
    my filing system (in Windows explorer) select the file, and the program
    converts it into docx, my choice.  I can read it there and when I try to
    copy and paste it into my file where the PDF version is saved, it behaves
    like an "image", and I can't save it.... or it saves likes something you
    save on the internet, so you have to go into internet every time you want
    to see it.    I have also pressed any amount of buttons to see if it will
    give me the option to save it any other way, and have found nothing.  What
    I would need is a file in docx.format that I can edit.  People send me
    things in PDF and sometimes I can just copy it off the PDF file and save it
    in WOrd, then I can translate it for them. But sometimes the PDF file
    doesnt allow me to copy the text.  If it is in image form, I cannot work on
    it.  It means printing it, so I can copy type it into Word... and for that
    I certainly wouldnt need to buy a program.  Its just double the work and
    ends up that the job takes twice as long.!
    Sorry  if I am a bit dumb with informatics.  But I simply could not find
    any way whatever to  copy the PDF file that was transformed into Word, in a
    format that would enable me to edit it.
    Kindest regards,
    Margery
    2013/12/2 Test Screen Name <[email protected]>
        Re: How to get PDF file that has been transformed into docx into my
    filing system so I can work on it???
    created by Test Screen Name<http://forums.adobe.com/people/TestScreenName>in *Adobe
    ExportPDF* - View the full discussion<http://forums.adobe.com/message/5890871#5890871

  • How to attached Two file in Email.

    Dear Friends,
    i have an email optoion in my Application .But right now it send mail with out attchment.i want to send meil with attachment .
    i have Two File browser item to attach file ,Please tell me how can i attach these two file with email
    My Code is
    DECLARE
    l_id number;
    to_add varchar2(1000):=:P1_TO;
    from_add varchar2(1000);
    l_body varchar2(4000):=:P1_DESCRIPTION;
    l_sub varchar2(1000):=:P1_SUBJECT;
    BEGIN
       select email_id into from_add from user_master where user_id=:app_user; 
       l_id:=APEX_MAIL.SEND(
            p_to        => to_add, -- change to your email address
            p_from      => from_add,
            p_body      => l_body,
            P_subj      => l_sub);
      COMMIT;
    apex_mail.push_queue(
    P_SMTP_HOSTNAME => '102.111.0.9',
    P_SMTP_PORTNO => 25);
    commit;
    END;How to attached two file in email .
    How can i do this.
    Thanks

    hI,
    thanks to reply me.
    It's REGARDS .
    eg.
    if i am sending any mail then in Bottom of Email Body My Name and Contact No Should be Display.
    Thanks

  • Hi, somebody knows how to edit a file that I created in corel draw 11 and I need to edit like PDF!!!! is so simple and nobody knows howwwwwwwwwwww!!!!

    Hi, somebody knows how to edit a file that I created in corel draw 11 and I need to edit like PDF!!!! is so simple and nobody knows howwwwwwwwwwww!!!!

    See your other thread.

  • How to attach a file

    Dear All,
    I want to send an email but I don,t know how to attach a file. I am using gmail on my ipad2 now I wish to send an email to my friend along with my mail I wish to attach a PDF file.
    Kindly please help me out because it is not showing the option for attaching the file.
    Thanks in advance.

    Unfortunately you can't. But other apps will allow it, like Goodreader. Goodreader is free and lets you open PDFs which can then be emailed. Pages, which is a document-layout programme also allows documents to be emailed within itself.

  • How to attach a file to a mail using htmldb

    Hi all,
    can u help me how to attach a file in htmldb.
    iam able to send a mail using the inbuilt package but unable to attach a file.
    advance thanks in helping out.

    The APEX_MAIL package doesn't support sending emails with attachments.
    See Send E-Mail with attachment from HTML DB for some alternatives.

Maybe you are looking for