Problem sending .pdf with email in ECC 6.0

hi there,
we are upgrading from r/3 4.6.c to ECC 6.0.
i have the following problem: in many z-ababs we convert spool-files to pdf-files and send them with function SO_NEW_DOCUMENT_ATT_SEND_API1 via email.
well, this is working okay, BUT: the ending '.pdf' is missing in the filename:
in R/3 4.6.c it looks like the following:
zfl_reporting.pdf
Now it looks like this:
zfl_reporting
So the file is not recognized as pdf-file. You have to add a .pdf manually to open it.
We can't do this as we send the pdf-files thousands of times to our customers.
Any ideas ?
reg, Martin

hi
Posted below is the sample code..
find the bolded ones...
REPORT ZMAIL_PDF NO STANDARD PAGE HEADING.
Data for mailing purpose
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: TAB_LINES LIKE SY-TABIX.
Spool table
TABLES : TSP01.
Data required for creating spool
DATA: MSTR_PRINT_PARMS LIKE PRI_PARAMS VALUE 'LP01',
      MC_VALID(1),
      MI_BYTECOUNT TYPE I,
      MI_LENGTH    TYPE I,
      MI_RQIDENT   LIKE TSP01-RQIDENT,
      REP          LIKE PRI_PARAMS-PLIST.
Internal table for capturing data into PDF format
DATA: MTAB_PDF LIKE TLINE OCCURS 0 WITH HEADER LINE.
File name
DATA : MC_FILENAME LIKE RLGRAP-FILENAME.
SELECTION SCREEN
PARAMETERS : P_REPID LIKE SY-REPID,
             P_LINSZ LIKE SY-LINSZ DEFAULT 132,
             P_PAART LIKE SY-PAART DEFAULT 'X_65_132'.
START-OF-SELECTION.
<b>  CONCATENATE 'C:\'
               P_REPID
              '.PDF'
         INTO  MC_FILENAME.</b>
  MOVE SY-REPID TO REP.
Get print parameters
  PERFORM GET_PRINT_PARAMS.
Send output of the required program to Spool
  SUBMIT (P_REPID) TO SAP-SPOOL WITHOUT SPOOL DYNPRO
                      SPOOL PARAMETERS MSTR_PRINT_PARMS
                      VIA SELECTION-SCREEN AND RETURN.
Get the the spool number that is just created
  PERFORM GET_SPOOL_NUMBER USING    SY-REPID SY-UNAME
                           CHANGING MI_RQIDENT.
Convert Spool to PDF & download the same
  PERFORM SPOOL_2_PDF.
Upload downloaded PDF file for mailing
  PERFORM UPLOAD_PDF_FILE.
Send mail with PDF attachment
  PERFORM SEND_MAIL.
      FORM get_spool_number *
      Get the most recent spool created by user/report              *
form get_spool_number using    f_repid
                               f_uname
                      changing f_rqident.
  data:
    lc_rq2name like tsp01-rq2name.
  concatenate f_repid
              f_uname
         into lc_rq2name separated by '_'.
  select * from tsp01 where  rq2name = sy-repid
    order by rqcretime descending.
    f_rqident = tsp01-rqident.
    exit.
  endselect.
  if sy-subrc ne 0.
    clear f_rqident.
  endif.
endform." get_spool_number
*&      Form  send_mail
      text
-->  p1        text
<--  p2        text
form send_mail.
Creation of the document to be sent
  DOC_CHNG-OBJ_NAME = 'TEST'.
  DOC_CHNG-OBJ_DESCR = 'TEST MAIL WITH PDF ATTACHMENT'. "mail subject
  OBJTXT = 'Test mail with PDF attachment'.
  APPEND OBJTXT.
  CLEAR OBJTXT.
  APPEND OBJTXT.
  APPEND OBJTXT.
  OBJTXT = 'Please double click the attachment to verify'.
  APPEND OBJTXT.
  DESCRIBE TABLE OBJTXT LINES TAB_LINES.
  READ TABLE OBJTXT INDEX TAB_LINES.
  DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
Creation of the entry for the compressed document
  CLEAR OBJPACK-TRANSF_BIN.
  OBJPACK-HEAD_START = 1.
  OBJPACK-HEAD_NUM   = 0.
  OBJPACK-BODY_START = 1.
  OBJPACK-BODY_NUM   = TAB_LINES.
  OBJPACK-DOC_TYPE   = 'RAW'.
  APPEND OBJPACK.
  DESCRIBE TABLE OBJBIN LINES TAB_LINES.
  OBJHEAD = 'Sample PDF attachement'. "
  APPEND OBJHEAD.
Creation of the entry for the compressed attachment
  OBJPACK-TRANSF_BIN = 'X'.
  OBJPACK-HEAD_START = 1.
  OBJPACK-HEAD_NUM   = 1.
  OBJPACK-BODY_START = 1.
  OBJPACK-BODY_NUM   = TAB_LINES.
<b>  OBJPACK-DOC_TYPE   = 'PDF'.</b>
  OBJPACK-OBJ_NAME   = 'TEST'.
  OBJPACK-OBJ_DESCR  = 'Test.PDF'.
  OBJPACK-DOC_SIZE   = TAB_LINES * 255.
  APPEND OBJPACK.
Completing the recipient list
For sending mail to Internet Address
  RECLIST-RECEIVER = '[email protected].
  RECLIST-REC_TYPE = 'U'.
  APPEND RECLIST.
Sending the document
       CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
            EXPORTING
                 DOCUMENT_DATA = DOC_CHNG
                 PUT_IN_OUTBOX = 'X'
            TABLES
                 PACKING_LIST  = OBJPACK
                 OBJECT_HEADER = OBJHEAD
                 CONTENTS_BIN  = OBJBIN
                 CONTENTS_TXT  = OBJTXT
                 RECEIVERS     = RECLIST
            EXCEPTIONS
                 TOO_MANY_RECEIVERS         = 1
                 DOCUMENT_NOT_SENT          = 2
                 OPERATION_NO_AUTHORIZATION = 4
                 OTHERS                     = 99.
      CASE SY-SUBRC.
        WHEN 0.
          WRITE  :/ 'MAIL SENT....'.
        WHEN 1.
          WRITE  :/ 'TOO MANY RECEIVERS'.
        WHEN 2.
          WRITE  :/ 'DOCUMENT NOT SENT'.
        WHEN 4.
          WRITE  :/ 'NO SEND AUTHORIZATION'.
        WHEN OTHERS.
          WRITE  :/ 'ERROR OCCURED WHILE SENDING MAIL'.
      ENDCASE.
endform.                    " send_mail
*&      Form  GET_PRINT_PARAMS
FORM GET_PRINT_PARAMS.
  call function 'GET_PRINT_PARAMETERS'
  exporting destination           = 'LP01'
            copies                = 1
            list_name             = rep
            list_text             = 'LIST ..... TO SAP-SPOOL'
            immediately           = 'X'
            release               = 'X'
            new_list_id           = 'X'
            expiration            = 1
            line_size             = 132
            line_count            = 65
            layout                = 'X_PAPER'
            sap_cover_page        = 'X'
            cover_page            = 'X'
            receiver              = sy-uname
            department            = 'System'
            no_dialog             = 'X'
  importing out_parameters        =  mstr_print_parms
            valid                 = mc_valid.
ENDFORM.                    " GET_PRINT_PARAMS
*&      Form  SPOOL_2_PDF
FORM SPOOL_2_PDF.
    call function 'CONVERT_ABAPSPOOLJOB_2_PDF'
    exporting
      src_spoolid      = mi_rqident
      no_dialog        = space
      dst_device       = mstr_print_parms-pdest
    importing
      pdf_bytecount    = mi_bytecount
    tables
      pdf              = mtab_pdf
    exceptions
      err_no_abap_spooljob           = 1
      err_no_spooljob                = 2
      err_no_permission              = 3
      err_conv_not_possible          = 4
      err_bad_destdevice             = 5
      user_cancelled                 = 6
      err_spoolerror                 = 7
      err_temseerror                 = 8
      err_btcjob_open_failed         = 9
      err_btcjob_submit_failed       = 10
      err_btcjob_close_failed        = 11
      others     = 12.
     call function 'WS_DOWNLOAD'
       exporting
         bin_filesize                  =  mi_bytecount
<b>        filename                      =  mc_filename</b>
         filetype                      = 'BIN'
       tables
         data_tab                      =  mtab_pdf
if sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
endif.
ENDFORM.                    " SPOOL_2_PDF
*&      Form  UPLOAD_PDF_FILE
FORM UPLOAD_PDF_FILE.
  call function 'WS_UPLOAD'
    exporting
<b>      filename                      = mc_filename</b>
      filetype                      = 'BIN'
    tables
      data_tab                      = OBJBIN
if sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
endif.
ENDFORM.                    " UPLOAD_PDF_FILE
**reward if helpful
regards,
madhumitha

Similar Messages

  • Sending PDF thru email with password protection in our SAP system

    Need solution for sending PDF thru email with password protection in our SAP ecc 6

    Or maybe you have found any other way? You can check here:
    Password protect PDF file:
    Re: Password protected PDF file 
    pdf with password encryption
    Regards Otto

  • Unable to send PDFs as email attachments

    I have become unable to send PDFs as email attachments when using Firefox.
    Depending on the PDF, I either get the message “There was an error opening this document. The file is damaged and could not be repaired.” or it opens as a blank document. This occus when opening the file with both Adobe Reader and Acrobat Pro. The problem seems to be isolated to PDFs. (I am able to send Word files. If a PDF is zipped before attaching, it can be opened without problem.) This occurs on both an institutional email account and personal (Yahoo) email account. This problem is isolated to Firefox (does not happen in Chrome).
    I have reset Firefox to default settings, as well as reinstalling.
    Thank you.

    Update Adobe® Acrobat® Plug-in for Web Browsers, Version 10.1.13 to version 11.
    Also please update all of your plugins and try again.
    Does this happen when you open the pdf in pdf.js, it is possible to change the default viewer by:
    * [[How to disable the built-in PDF viewer and use another viewer]]

  • Problem sending pdf file on Windows mail

    I get the error message "There is a problem sending messages from [email protected] right now.  Contact your provider for more information" (both on aol.com and gmail.com) each time I send an e-mail with a pdf attachment.  I have the Adobe Reader XI and using Windows 8.1. 

    I get the error message "There is a problem sending messages from [email protected] right now.  Contact your provider for more information" (both on aol.com and gmail.com) each time I send an e-mail with a pdf attachment.  I have the Adobe Reader XI and using Windows 8.1. 

  • Problem sending photos via email since I recently updated to iLife 11.

    Having problem sending photos by Email since I upgraded to iLife11.
    I followed the instructions.   I used to just select my photos and then a screen would come up to compose an email.
    Now it comes up with templates and I had to set up what account to send them from.  No matter what I do, it just
    never goes thru.  
    What's the solution?  

    Set Mail as your preferred email client in the iPhoto Preferences -> General

  • Send pdf as email

    hai gurus ,
    my problem is i am sending pdf as email its working fine
    but when i go and check the pdf file in  scot transaction the file is not getting  opened
    plz help me
    thanks in advance
    anji.
    Moderator message: please search for available information/documentation before asking, provide more technical details about errors when posting again.
    Edited by: Thomas Zloch on Oct 28, 2010 10:58 AM

    Hi,
    Check this link [http://wiki.sdn.sap.com/wiki/display/Snippets/ConvertsspoolrequestintoPDFdocumentand+emails]
    BR,
    Lokeswari.
    Moderator message: please do not post just links without any further explanations.
    Edited by: Thomas Zloch on Oct 28, 2010 10:58 AM

  • Sudden Problem Sending Photos by Email

    Hi,
    After being able to successfully send photos from my iPhone by email ever since I got it, I suddenly have a problem. The recipient does not receive the photo - only a small blue box with a question mark in it. The copy of the email in my Sent folder looks the same.
    I've tried a reset and, for info, I use BT Yahoo for email.
    Have hunted high and low for reference to this and only found one post but there was no real explanation or resolution.
    Any help or advice gratefully received. Cheers!
    adam.sh

    You are referring to this discussion, right?
    Problem sending photos via email since I recently updated to iLife 11.
    Which MacOS X version are you using and which iPhoto version?
    If you are using Yosemite and have enabled up two-step verification for iCloud?  Then you may need to create an application specific password for iPhoto.  See this discussion:  Re: Unable to send photo through email using iphoto theme (designs)Re: Unable to send photo through email using iphoto theme (designs)Re: Unable to send photo through email using iphoto theme (designs)  Unable to send photo through email using iphoto theme (designs)

  • Problem sending photos by Email.  Received a response from T. Devlin.  Did not solve problem.  I had already done what he suggested.

    I had already entered my Email info under preferences.
    The screen comes up with the photos I want to send.
    I type my message and hit Send.  The blue bar appears "Sending".
    However,  don't know where the photos go, they don't reach destination.
    I tried sending to myself at another Email address - they didn't arrive, and they are not shown under Sent Emails either.
    How to resolve?
    Tried to respond to T. Devlin - but that didn't happen either.  Just a Like symbol was there (as in Facebook).

    You are referring to this discussion, right?
    Problem sending photos via email since I recently updated to iLife 11.
    Which MacOS X version are you using and which iPhoto version?
    If you are using Yosemite and have enabled up two-step verification for iCloud?  Then you may need to create an application specific password for iPhoto.  See this discussion:  Re: Unable to send photo through email using iphoto theme (designs)Re: Unable to send photo through email using iphoto theme (designs)Re: Unable to send photo through email using iphoto theme (designs)  Unable to send photo through email using iphoto theme (designs)

  • Sending attachments with emails in Javamail

    I'm trying to send attachments with emails using Javamail. Following is the code through which I'm trying to achieve that. It works as expected on a JRE1.6 environment. But on JRE1.5, the content of the file gets added to the mail body as text.I want the file to be sent as an attachment.
    Any pointers on the observed difference in behavior would be highly appreciated!
    String msgText = mailInfo.getMessage();
            String attachmentFileName = mailInfo.getFileName();
            MimeBodyPart mimeBodyPart = new MimeBodyPart();
            mimeBodyPart.setText(msgText);
            // create the second message part
            MimeBodyPart attachmentBodyPart = new MimeBodyPart();
            // attach the file to the message
            FileDataSource fileDataSource = new FileDataSource(attachmentFileName);
            attachmentBodyPart.setFileName(fileDataSource.getName());
            attachmentBodyPart.setDataHandler(new DataHandler(fileDataSource));
            // create the Multipart and add its parts to it
            Multipart multipart = new MimeMultipart();
            multipart.addBodyPart(mimeBodyPart);
            multipart.addBodyPart(attachmentBodyPart);
            message.setContent(multipart);The email in case of JRE1.5 is as follows
    {color:#0000ff}------=_Part_0_33189144.1233078680250
    Content-Type: text/plain; charset=us-ascii
    Content-Transfer-Encoding: 7bit
    Hi...Test Mail
    ------=_Part_0_33189144.1233078680250
    Content-Type: application/octet-stream; name=corba_architecture.pdf
    Content-Transfer-Encoding: base64
    Content-Disposition: attachment; filename=corba_architecture.pdf
    Content-ID: Attachment
    JVBERi0xLjIgDSXi48/TDQogDTggMCBvYmoNPDwNL0xlbmd0aCA5IDAgUg0vRmlsdGVyIC9GbGF0
    ZURlY29kZSANPj4Nc3RyZWFtDQpIiUWPW07DMBBFV+A93E9QlWBP/Kj5awt8USFRbyBKnTQIkshK
    YfvYcQoaybrSzDkzFhCxQgemeWkUyKTXEIeSHMGjZXvHSFBJCpXUpQLcE+NIlbCHFw4pUxeuZQUv
    ueY25gYxk9mKmH9wtwvNpZ99M1+jc2wxXzxweHvf73AP9xGFhaIsTyC3/w6ZDYfxaxoHP8w4jmf/
    ------=_Part_0_33189144.1233078680250-- {color}

    Following is the debug trace obtained on running the program on 1.5.
    +12:45:57,218 INFO [MailerThread] EmailManager:306 - Sending message {toAddress [email protected],+
    +replyTo =null,+
    +cc =null,+
    +message =Hi...Test Mail,+
    +subject =test mail,+
    +contentType =null fileName =C:\docs\cbe\dist computing\A.txt }+
    Loading javamail.default.providers from jar:file:/C:/docs/cbe/lib/mail-1.4.jar!/META-INF/javamail.default.providers
    DEBUG: loading new provider protocol=imap, className=com.sun.mail.imap.IMAPStore, vendor=Sun Microsystems, Inc, version=null
    DEBUG: loading new provider protocol=imaps, className=com.sun.mail.imap.IMAPSSLStore, vendor=Sun Microsystems, Inc, version=null
    DEBUG: loading new provider protocol=smtp, className=com.sun.mail.smtp.SMTPTransport, vendor=Sun Microsystems, Inc, version=null
    DEBUG: loading new provider protocol=smtps, className=com.sun.mail.smtp.SMTPSSLTransport, vendor=Sun Microsystems, Inc, version=null
    DEBUG: loading new provider protocol=pop3, className=com.sun.mail.pop3.POP3Store, vendor=Sun Microsystems, Inc, version=null
    DEBUG: loading new provider protocol=pop3s, className=com.sun.mail.pop3.POP3SSLStore, vendor=Sun Microsystems, Inc, version=null
    DEBUG: getProvider() returning provider protocol=smtp; type=javax.mail.Provider$Type@77eaf8; class=com.sun.mail.smtp.SMTPTransport; vendor=Sun Microsystems, Inc
    DEBUG SMTP: useEhlo true, useAuth false
    DEBUG SMTP: trying to connect to host "10.16.68.131", port 25, isSSL false
    +220 mailhost5.vmware.com ESMTP Postfix (mailhost5)+
    DEBUG SMTP: connected to host "10.16.68.131", port: 25
    EHLO sbanerjee
    +250-mailhost5.vmware.com+
    +250-PIPELINING+
    +250-SIZE 26800000+
    +250-VRFY+
    +250-ETRN+
    +250-ENHANCEDSTATUSCODES+
    +250-8BITMIME+
    +250 DSN+
    DEBUG SMTP: Found extension "PIPELINING", arg ""
    DEBUG SMTP: Found extension "SIZE", arg "26800000"
    DEBUG SMTP: Found extension "VRFY", arg ""
    DEBUG SMTP: Found extension "ETRN", arg ""
    DEBUG SMTP: Found extension "ENHANCEDSTATUSCODES", arg ""
    DEBUG SMTP: Found extension "8BITMIME", arg ""
    DEBUG SMTP: Found extension "DSN", arg ""
    DEBUG SMTP: use8bit false
    MAIL FROM:<[email protected]>
    +250 2.1.0 Ok+
    RCPT TO:<[email protected]>
    +250 2.1.5 Ok+
    DEBUG SMTP: Verified Addresses
    DEBUG SMTP:   [email protected]
    DATA
    +354 End data with <CR><LF>.<CR><LF>+
    ------=_Part_0_3278348.1233126957281
    Content-Type: text/plain; charset=us-ascii
    Content-Transfer-Encoding: 7bit
    Hi...Test Mail
    ------=_Part_0_3278348.1233126957281
    Content-Type: text/plain; charset=us-ascii; name=A.txt
    Content-Transfer-Encoding: 7bit
    Content-Disposition: attachment; filename=A.txt
    Content-ID: Attachment
    adasdasdd
    ------=_Part_0_3278348.1233126957281--
    +.+
    +250 2.0.0 Ok: queued as 5BE5BDC100+
    +12:45:59,125 INFO [MailerThread] EmailManager:331 - Message {toAddress [email protected],+
    +replyTo =null,+
    +cc =null,+
    +message =Hi...Test Mail,+
    +subject =test mail,+
    +contentType =null fileName =C:\docs\cbe\dist computing\A.txt } sent to the SMTP server successfully+

  • Problem sending attachements with gmail account on mail

    Hello:
    I have a lot of problems sending attachments with my gmail account using mail.
    1. Attachments are not big.
    2. I don't have the same problem with other non gmail accounts.
    3. When ever I have this problem I go to gamil.com and I am able to send the attachment with no problem.
    Any suggestions?
    Thanks

    No idea ?
    Nemrod

  • I have an IPad 2,I have previously had no problem sending photos by email.But now for some reason photos I send are not successfully been sent. I'm not sure if I have changed a setting by mistake. Is there a particular Setting I should be concentrating on

    I would be very appreciative if anyone could give me some advice!I have an IPad 2,I have previosly had no problem sending photos by email.But now for some reason photos I send are not successfully been sent. I'm not sure if I have changed a setting by mistake. Is there a particular Setting I should be concentrating on to making it successfully work again?Cheers!I look forward to hearing back from you!Aussie Fella!

    is this how you send your photo?
                            Tap a photo, album, or event to select it.                    
                            Tap > Email.                                            
                            Confirm or change the photos you want to share by tapping an option.                       
                                  Select all the photos in an album or event: Tap All.                                                        
                                  Select a range of photos: Tap Choose, tap Range, tap the first and last photos in the range, and tap Next.                                                        
                            Type the address of the recipient, add a message, and tap Send.

  • Problem sending mail with attachments???

    Hi Everybody,
    I have got a problem sending mail with attachments...
    I am able to send a plain mail ... but when i am trying to send mail along with an attachment ... its not being sent....
    its not showing any error it is simply hanging...
    what should i do?
    If u know any solns please do suggest me....
    Thanks in advance

    activation.jar is already there...
    initially i wrote a swing program as a front end and it was working abs fine... in my sense it was properly sending mails along with the attachments...
    when i changed the front-end to JSP handled by Servlets i am getting a problem...
    and even the swing program stopped working ...
    now swing program is getting compiled but it is hanging at run time showing an exception "Exception occured during event dispatching"
    i dont understand what probably may be the problem...
    if u can trace out, please give me any suggestions
    Thanks in advance and regards

  • Send table with email as excel-attachment

    Hi.
    I have such a requirement. I have a report that selects data and show it in ALV form.
    No I need to execute it as background job and then send emails with selected data as an attached excel file.
    Does anybody know the way to convert usual internal table into the internal table that contains the same data in a excel file form, that I could send then with email?
    All ways of converting itab to excel use excel file on frontend PC as a destination. Is there any way to avoid downloading to a real file and then uploading back to internal table?
    Thanks in advance.

    hi,
    these steps will help u to achieve your requirement.
    step 1 : for getting the selected records only , u can use the below code
                    lr_selections = go_alv_table_ref->get_selections( ).
                    lr_selection(gs->get_selected_rows( RECEIVING value = gt_rows ).
    Step2 : paa the selected records (gt_rows) to the method cl_bcs_convert=>string_to_solix - (give the code page as 4103 -this wll convert to an excel file ) get the file and send as a mail attachment using the method 'add_attachement' from the class 'cl_document_bcs'.
    Hope this helps,
    Thanks,
    Sindhuja

  • Problem sending pdf attachments from .me email

    When I send an email from my .me account with a pdf attachment, the recipient does not receive it.  The attachment is not lost:  they do not receive the email at all.
    If I send the same email with a doc, excel or other type of attachment, it is received without a problem. 
    I can send the same pdf from my yahoo account and it is received without a problem.
    I have replicated the problem with different pdf files and different recipients.
    Any thoughts on what might be happening?
    Thanks!

    In Mail's menu, go to Edit > Attachments
    Do you have "Always Send Windows-Friendly Attachments" checked?  You should.

  • Problem sending to Comcast email

    I am having a problem sending an email to anyone who is using comcast.net email. 
    This is something that just started about 3 weeks ago.
    I have a web site, if I send an email with the web site listed anywhere in the email, www.beaumontfamilyhistory.com,
    the comcast server dumb's the email into the spam folder on their server, the email is not downloaded to anyone's computer.
    In order to find it the person has to sign in to there comcast mail account and retrieve the email out of the spam folder, even after saying its not spam
    and I send them another email it goes into the spam folder.
    If I send the same email with out the web site link the email goes through just fine. 
    It has been over a year that I have had the web site listed on every email I send out, the problem has been just
    in the last couple of weeks.  I have checked the web site with spam criminal, and other sites and all have indicated its ok.
    The site is hosted at Host Excellent, its only a web site with no email, of course Host Excellent says there is not problem
    on there end.  Comcast says they are not blocking my email,
    Anyone have any suggestions, greatly appreciated
    Mike
    10.8.2 iMac

    Thanks I have another web site using Host Excellent and it works fine with Comcast
    Mike

Maybe you are looking for

  • Final cut pro to compressor

    Hi, I am having trouble exporting a sequence from Final Cut Pro to compressor. When I export, FCP creates a new bizzarely named project, and generates an alert that "A file of that name already exists". Compressor then opens and appears normal, excep

  • Need help with pre ordering the iphone 4s.

    I did everything and im at the screen where it tells you how much it is total and everything you chose. But it says No text plan, it didnt ask me about a text plan, is this something i have to do with my carrier to get a text plan?

  • Error enabling backup

    installed the new IS and am trying to get icloud to work.  Getting error on both Ipad2 and Iphone  getting the following meaasge on both icloud Backup Failed There was a problem enabling iCloud backup

  • Export data from MS sql server table to an oracle table

    I need to move data from a sql server table to an oracle table and when ever the sql server table is updated it needs to automatically update the oracle table. Is there procedure to do this or do I migrate the data once and set up a trigger on the sq

  • Connect from SAP gateway to RFC server failed - Java StandAlone app X SAP RAC System

    Dears, I'm developing a Java application (RFC SERVER) with JCo3 and I need to connect to SAP RAC system. I have configured the TCP/IP connection via transaction SM59, but when I try to start my server I face the error below (dev_jco_rfc.trc): =======