Setting "Follow Up" flag in email thru utl_smtp

Hi,
Can anybody tell me, how can I set up "Follow up" flag with date in mail using utl_smtp.
Any help is greatly appreciated.

Unless my recollection of RFC822, the "Follow Up" flag is not part of the SMTP protocol. So you'd have to ask the vendor of whatever front-end application your email recipients use how that particular application wants the follow up flag specified and whether the vendor extended the SMTP protocol to allow that.
Justin

Similar Messages

  • Csnnot send email thru UTL_SMTP (PL-SQL)

    If I try to send an email thru SQL it will work, but If i convert it to a PROCEDURE and then execute it with "EXECUTE PD_EMAIL('TEST','TEST'); It will give me the same error:
    ORA-24247: network access denied by access control list (ACL)
    Please help, this is ORACLE STANDARD EDITION 11G R2
    The store procedure is as follows:
    Create or Replace Procedure Pd_Email (Gv_Subject VARCHAR2, Gv_Body VARCHAR2) Is
    Lv_From VARCHAR2(80) := '[email protected]';
    Lv_To VARCHAR2(500) := '[email protected]';
    Lv_Host VARCHAR2(30) := 'mail.myhost.com';
    Lv_Conn Utl_smtp.Connection;
    BEGIN
    Lv_Conn := utl_smtp.Open_Connection(Lv_Host, 25);
    utl_smtp.Helo(Lv_Conn, Lv_Host);
    utl_smtp.Mail(Lv_Conn, Lv_From);
    utl_smtp.Rcpt(Lv_Conn, Lv_To);
    utl_smtp.Data(Lv_Conn,
    'Date: ' || to_char(sysdate, 'Dy, DD Mon YYYY hh24:mi:ss') ||chr(13)||chr(10)||
    'From: ' ||Lv_From ||chr(13)||chr(10)||
    'Subject: '||Gv_Subject||chr(13)||chr(10)||
    'To: ' || Lv_To||chr(13)||chr(10));
    utl_smtp.Quit(Lv_Conn);
    EXCEPTION
    WHEN utl_smtp.Transient_Error OR utl_smtp.Permanent_Error then
    raise_application_error(-20000, 'Email Error: '||sqlerrm);
    END
    Your help with me be greatly appreciated it.

    Panamanian wrote:
    Ok, since it does work in SQL, but not in a table trigger (if inserting). What should I check? or what sql statement should I run? for testing purposes?It cannot work in SQL as the SQL language does not support defining and using tcp sockets. PL/SQL is needed for that.
    PL/SQL code is also what is used to define a trigger. So assuming the same schema is used, that PL/SQL code will be executed in the same environment irrespective of the call being via a trigger or via a normal database call.
    That aside - sending e-mails from triggers is a terrible idea. A trigger is NOT intended to be used for something like that.
    The transaction can be rolled back. The e-mail send cannot be undone - and en e-mail would have been send reporting on changes that never happened in the database.
    The same trigger can fire twice for the very same row and transaction under special circumstances in Oracle. Thus 2 e-mails reporting the very same change... a change that can still be rolled back. How does that make sense?
    The trigger can choke on mail errors. What then? Fail a perfectly valid business transaction that meets all consistency and validation rules, because the mail server is down, or there is a network problem or something?
    That is not how robust applications are designed and written.

  • When I flag an email with my gmail account using Apple's Mail App how do I flag and set a reminder that at a specific to follow

    When I flag an email with my gmail account using Apple's Mail App how do I flag and set a reminder that at a specific to time to follow up with that email ?

    Welcome to the Apple community.
    If you are unable to remember your password, security questions, don’t have access to your rescue address or are unable to reset your password for whatever reason, your only option is to contact Apple ID Support, upon speaking to an operator you should explain that your problem is related to your Apple ID, this way you will not be charged for assistance, even if you don’t have an AppleCare plan.
    The operator will take you through some steps you may have already tried, however they need to be sure they have exhausted all usual approaches before trying to reset your account, so you should try to be helpful and show patience with the procedure.
    The operator will need to verify they are speaking to the account holder and may ask you some questions that only the account holder could know, and you will need to answer them if the process is to proceed.
    Once the operator has verified your identity they will send a message through to your device which contains an alpha numeric code, which you will need to read back to them.
    Once this has been completed they will send an email to your iCloud email address after a period of 24 hours, so you should check that mail is enabled in your devices iCloud settings.
    Upon receipt of the email, use the reset link provided to reset your password, after which you should be able to make the adjustments to iCloud that you wish to do.

  • Sending email using UTL_SMTP

    Dear experts,
    I am trying to send an email using UTL_SMTP (i switched from UTL_MAIL to UTL_SMTP since i need to send mails with large attachments - BLOB). I am using the demo_mail package given here:
    http://www.oracle.com/technology/sample_code/tech/pl_sql/htdocs/Utl_Smtp_Sample.html
    While running the program I am getting an error message (from the error.log) saying:
    [Mon Aug 04 14:00:21 2008] [error] [client 192.168.0.7] mod_plsql: /ns/email_p.send HTTP-404 ORA-29279: SMTP permanent error: 530 5.7.0 Must issue a STARTTLS command first. 9sm12723808qbw.6\nORA-06512: at "SYS.UTL_SMTP", line 20\nORA-06512: at "SYS.UTL_SMTP", line 98\nORA-06512: at "SYS.UTL_SMTP", line 221\nORA-06512: at "NEXTSTEP.SEND_EMAIL_HELPER", line 258\nORA-06512: at "NEXTSTEP.SEND_EMAIL_HELPER", line 119\nORA-06512: at "NEXTSTEP.EMAIL_P", line 33\nORA-06512: at line 31\n, referer: file:///C:/Documents and Settings/Mayank/My Documents/Flex Builder 3/ns5/bin-debug/main.swf
    My code is as follows:
    PACKAGE DECLARATION. This is the DEMO_MAIL package posted under above link (I have renamed it).
    CREATE OR REPLACE PACKAGE NEXTSTEP.send_email_helper IS
      ----------------------- Customizable Section -----------------------
      -- Customize the SMTP host, port and your domain name below.
        smtp_host   VARCHAR2(256) := 'smtp.gmail.com';
        smtp_port   PLS_INTEGER   := 587;
        smtp_domain VARCHAR2(256) := null;
      -- Customize the signature that will appear in the email's MIME header.
      -- Useful for versioning.
      MAILER_ID   CONSTANT VARCHAR2(256) := 'Mailer by Oracle UTL_SMTP';
      --------------------- End Customizable Section ---------------------
      -- A unique string that demarcates boundaries of parts in a multi-part email
      -- The string should not appear inside the body of any part of the email.
      -- Customize this if needed or generate this randomly dynamically.
      BOUNDARY        CONSTANT VARCHAR2(256) := '-----7D81B75CCC90D2974F7A1CBD';
      FIRST_BOUNDARY  CONSTANT VARCHAR2(256) := '--' || BOUNDARY || utl_tcp.CRLF;
      LAST_BOUNDARY   CONSTANT VARCHAR2(256) := '--' || BOUNDARY || '--' ||
                                                  utl_tcp.CRLF;
      -- A MIME type that denotes multi-part email (MIME) messages.
      MULTIPART_MIME_TYPE CONSTANT VARCHAR2(256) := 'multipart/mixed; boundary="'||
                                                      BOUNDARY || '"';
      MAX_BASE64_LINE_WIDTH CONSTANT PLS_INTEGER   := 76 / 4 * 3;
      -- A simple email API for sending email in plain text in a single call.
      -- The format of an email address is one of these:
      --   someone@some-domain
      --   "Someone at some domain" <someone@some-domain>
      --   Someone at some domain <someone@some-domain>
      -- The recipients is a list of email addresses  separated by
      -- either a "," or a ";"
      PROCEDURE mail(sender     IN VARCHAR2,
             recipients IN VARCHAR2,
             subject    IN VARCHAR2,
             message    IN VARCHAR2);
      -- Extended email API to send email in HTML or plain text with no size limit.
      -- First, begin the email by begin_mail(). Then, call write_text() repeatedly
      -- to send email in ASCII piece-by-piece. Or, call write_mb_text() to send
      -- email in non-ASCII or multi-byte character set. End the email with
      -- end_mail().
      FUNCTION begin_mail(sender     IN VARCHAR2,
                  recipients IN VARCHAR2,
                  subject    IN VARCHAR2,
                  mime_type  IN VARCHAR2    DEFAULT 'text/plain',
                  priority   IN PLS_INTEGER DEFAULT NULL)
                  RETURN utl_smtp.connection;
      -- Write email body in ASCII
      PROCEDURE write_text(conn    IN OUT NOCOPY utl_smtp.connection,
                   message IN VARCHAR2);
      -- Write email body in non-ASCII (including multi-byte). The email body
      -- will be sent in the database character set.
      PROCEDURE write_mb_text(conn    IN OUT NOCOPY utl_smtp.connection,
                  message IN            VARCHAR2);
      -- Write email body in binary
      PROCEDURE write_raw(conn    IN OUT NOCOPY utl_smtp.connection,
                  message IN RAW);
      -- APIs to send email with attachments. Attachments are sent by sending
      -- emails in "multipart/mixed" MIME format. Specify that MIME format when
      -- beginning an email with begin_mail().
      -- Send a single text attachment.
      PROCEDURE attach_text(conn         IN OUT NOCOPY utl_smtp.connection,
                data         IN VARCHAR2,
                mime_type    IN VARCHAR2 DEFAULT 'text/plain',
                inline       IN BOOLEAN  DEFAULT TRUE,
                filename     IN VARCHAR2 DEFAULT NULL,
                    last         IN BOOLEAN  DEFAULT FALSE);
      -- Send a binary attachment. The attachment will be encoded in Base-64
      -- encoding format.
      PROCEDURE attach_base64(conn         IN OUT NOCOPY utl_smtp.connection,
                  data         IN RAW,
                  mime_type    IN VARCHAR2 DEFAULT 'application/octet',
                  inline       IN BOOLEAN  DEFAULT TRUE,
                  filename     IN VARCHAR2 DEFAULT NULL,
                  last         IN BOOLEAN  DEFAULT FALSE);
      -- Send an attachment with no size limit. First, begin the attachment
      -- with begin_attachment(). Then, call write_text repeatedly to send
      -- the attachment piece-by-piece. If the attachment is text-based but
      -- in non-ASCII or multi-byte character set, use write_mb_text() instead.
      -- To send binary attachment, the binary content should first be
      -- encoded in Base-64 encoding format using the demo package for 8i,
      -- or the native one in 9i. End the attachment with end_attachment.
      PROCEDURE begin_attachment(conn         IN OUT NOCOPY utl_smtp.connection,
                     mime_type    IN VARCHAR2 DEFAULT 'text/plain',
                     inline       IN BOOLEAN  DEFAULT TRUE,
                     filename     IN VARCHAR2 DEFAULT NULL,
                     transfer_enc IN VARCHAR2 DEFAULT NULL);
      -- End the attachment.
      PROCEDURE end_attachment(conn IN OUT NOCOPY utl_smtp.connection,
                   last IN BOOLEAN DEFAULT FALSE);
      -- End the email.
      PROCEDURE end_mail(conn IN OUT NOCOPY utl_smtp.connection);
      -- Extended email API to send multiple emails in a session for better
      -- performance. First, begin an email session with begin_session.
      -- Then, begin each email with a session by calling begin_mail_in_session
      -- instead of begin_mail. End the email with end_mail_in_session instead
      -- of end_mail. End the email session by end_session.
      FUNCTION begin_session RETURN utl_smtp.connection;
      -- Begin an email in a session.
      PROCEDURE begin_mail_in_session(conn       IN OUT NOCOPY utl_smtp.connection,
                      sender     IN VARCHAR2,
                      recipients IN VARCHAR2,
                      subject    IN VARCHAR2,
                      mime_type  IN VARCHAR2  DEFAULT 'text/plain',
                      priority   IN PLS_INTEGER DEFAULT NULL);
      -- End an email in a session.
      PROCEDURE end_mail_in_session(conn IN OUT NOCOPY utl_smtp.connection);
      -- End an email session.
      PROCEDURE end_session(conn IN OUT NOCOPY utl_smtp.connection);
    END;How should I solve the above error? Can anyone help me with my query please?
    If I add the code to start TLS it still gives me an error. If I add the code
    utl_smtp.command(conn,'STARTTLS');
    utl_smtp.helo(conn, smtp_domain);
    under email_sender_help package just before under begin_session function, it gives me an error saying:
    ORA-29279: SMTP permanent error: 503 5.5.1 EHLO/HELO first. s27sm2097329qbs.12
    So then if i enter the same code after:
    utl_smtp.command(conn,'STARTTLS');
    utl_smtp.helo(conn, smtp_domain);
    It gives me an error:
    ORA-29278: SMTP transient error: 421 Service not available
    Message was edited by:
    Monk
    Message was edited by:
    Monk

    look like rely turned off on the server..
    check this.. or ask your network guys..
    Go to Control Panel->Add or Remove Programs->Click on
    Add/Remove Wndows Components
    Check IIS check box.
    Select Internet Information Service (IIS) option and click on Details button
    Check whether SMTP Service is checked or not.
    If not selected then select SMTP check box.
    This process should be done on server.
    It will help out from ORA-29278: SMTP transient error: 421 Service not available problem.
    thanks

  • Follow-up Flags for additional mailboxes

    Environmental Infomation:
    Windows 7 Pro 64-bit
    Office 2010 SP1
    Problem: In a shared mailbox, when the user clicks the flag icon next to an email, the icon does not change.  In the preview pane, you can see the follow up status change each time you click.
    Problem occurs when user tries to set a follow up flag on a shared mailbox
    Problem does not occur for other users accessing the same shared mailbox
    Problem does not occur in the users own mailbox
    Problem ONLY occurs in this specific mailbox, user has other mailboxes that work as expected
    If the user restarts outlook, the icon will display correctly, however if the user clicks on it again, it does not change.
    What I've already tried:
    Creating a new Outlook profile
    Removing the mailbox from the users Outlook, then adding it back
    Opening Outlook in Safe Mode
    Disabled Offline Use
    Disabled Cached Mode
    Verified "Download Shared Folders" is disabled
    Logged user onto a new computer with a new profile
    Thank you, 
    Zak
    MODERATORS: PLEASE DO NOT MARK ANY REPLIES AS AN ANSWER, ONCE A RESOLUTION IS FOUND, I WILL MARK THE ANSWER.

    Hi,
    Since only one user is affected, please have the user run Outlook in safe mode to determine if it's 3rd party add-ins related:
    Press Win + R and type “outlook.exe /safe” in the blank box, then press Enter.
    If there’s no problem in Safe Mode, disable the suspicious add-ins to verify which add-ins caused this issue.
    If the problem persists, we can also disable the local cache of the shared folders to check the result:
    Go to File tab -> Account Settings -> Account Settings -> Double click on the account -> More Settings -> Advanced tab -> Uncheck "Download shared folders" -> OK.
    I hope this can help.
    Regards,
    Melon Chen
    TechNet Community Support

  • HT4436 How do I set up a second iCloud email account?

    How do I set up a second iCloud email account?

    Well Roger , it may not be particularly difficult for you it is quiet clear that for several thousand people who managed to find the time to seek out help for these devices and programs that the manufacturer is unable or unwilling to provide it is at the very least "difficult"! If we are to tally up the amount of questions and inquiries posted on this one help site, I shudder to think of the size of the iceberg of inoperative functions and thus lost revenue to all those people , company's that like me have found things "difficult "! Last summer I created a "I cloud " address in a hurry while in dep lounge LHR
    And now wish to change as above is reputed to be used by notorious thugs who assault seniors on streets and post result on Web, useing same letters that I had hastily typed prior to Flt over pond. Alas like you I am now aware of the inability of changing address and thus wish to create " alias" to at least hide offending letters . The can of worms gets  more difficult as my main comp is an antique HP  windows 7 on which I have installed Apple  control panel ! Thus I get duplicate mail on an MSN Acc plus Hot mail that is still unable to decide if it wants to be known as "Outlook " or not? All the folders created by me for "HotMail " will show up with some persuasive tapping but will not allow the release to view their contents? If I click on "cloud mail" "no mail" message  is shown! I can deposit info /file in Cloud mail "archive" but only if I navigate to " Mail box Accounts" first ? If I want to create a file , no facility seems to be available ? So info/files that warrant saving /filing are left flagged ,sloshing about in the InBox or stuffed into over burdened  "Cloud Account!
    I have tried to follow instructions in Apple Corp official instructions ,both I Pad and Cloud and am unable to locate the term "preferences" as no "Action pop up menu * has shown itself! thus I am unable click "Accounts" or "add an Alias" !
    I must confess I have been very rude to the Micro Soft people in the past for my inability to grapple with their system , but now think perhaps I am the problem as Parkinson's will affect cognitive  function?...... Your remark re expecting "free" mail box features in my opinion is a bit like the car salesman saying " No Sir, that is the price for the car , the oil ,
    Anti freeze , trans fluid , battery acid are all extra!!??..... Carry on London!!!!

  • Setting the 'Return-Path' of emails sent using the send email behaviour

    Hi,
    How do I set the 'Return-Path' of emails sent using the send email behaviour? I am having troubles because the emails sent from my page are being filtered out as spam when they should be coming through. the text is the following (it is the notification of an e-card to the recipient):
    Dear Bart
    We've decided this year to share our holiday greetings while also showing our commitment to protect the planet. Since it takes 24 mature trees to
    produce one ton of greeting cards, this e-card shares our holiday wishes with both you and future generations.
    Please follow the link below.
    Best Wishes,
    John
    http://www.jdgcsfiles.com/_ecards/viewcard.php?ID_cnt=297
    I suspect that it has something to do with the return path setting.
    Can anyone help me on this one and get it through the spam filters of most email clients?!
    Thanks,
    NIk

    Hi Nik,
    so far the only "flagged as spam" reason I know of is, that ADDT curreently misses to insert the current date/time -- please try the fix mentioned in the thread http://www.adobeforums.com/webx/.3c034953/5 and see if it helps
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • I am having email problems with the new Lion.  stmp, imap, etc. I have looked up google info and It is confusing when it comes to TS, SSL also, please explain how to set it up so my email goes out and comes in securely.  Help

    I am having email problems with the new Mountain Lion.  stmp, imap, etc. I have looked up google info and It is confusing when it comes to TS, SSL also, please explain how to set it up so my email goes out and comes in securely.  Help
    Incoming Mail (IMAP) Server - requires SSL:
    imap.gmail.com
    Use SSL: Yes
    Port: 993
    Outgoing Mail (SMTP) Server - requires TLS:
    smtp.gmail.com (use authentication)
    Use Authentication: Yes
    Use STARTTLS: Yes (some clients call this SSL)
    Port: 465 or 587
    Account Name:
    your full email address (including @gmail.com) Google Apps users, please enter username@your_domain.com
    Email Address:
    your full Gmail email address ([email protected]) Google Apps users, please enter username@your_domain.com
    Password:
    your Gmail password
    The Quick Answer
    Follow the instructions below to set up IMAP1 access in most email clients.
    Google Apps users, please follow the default instructions unless otherwise noted, replacing 'your_domain.com' with your actual domain2 name.
    this is all greek to me. WHAT IS STARTTLS? On the first page of Apple set up there is a TLS certificate and it is marked NONE- should I change it to the long APPLE CERT option?  The next page under ADVANCED: THERE IS A BOX SSL MARKED.  Then IMAP Path Prefix - I put stmp.gmail.com.. is that right?  Port 993 can  use this one? as 456 doesn't work and 587 said it wasn't safe.  Under AUTHENTICATION I used PASSWORD.  Should I have used external client cert TLS?
    Please help me set this up securely. Thanks

    Apple - Support - Mail Setup Assistant

  • Trying to set up new Apple ID - email verification NOT working

    Hi all,
    Just a quick query:
    I've purchased a new iPhone 4s today and am having trouble setting up an Apple ID.
    After following the email verification link sent to my GMAIL account, I entered my Apple ID and p/w, and it returned the following message:
    This email address is already in use or you may already have an Apple ID associated with this email address. Please try again or sign in using your existing Apple ID.
    Thinking perhaps I'd set one up previously and had just forgotten the details I then set up and entirely new email account - this time with yahoo. And after following the same steps I was again faced with the above message!
    In another twist, I've set up yet another entirely new account - this time with hotmail - and now, I'm not even receiving the email verification to my inbox.
    Would appreciate any and all feedback as this is extremely frustrating! Cannot download any apps/music/anything without an Apple ID!!
    Regards,
    J

    I have been attempting this since November 17 in the evening.  I've been trying to get help on the support line but no one is helping.  I get the same message not matter what e-mail address I try to use to set up an Apple Id.  We tried in my name with my e-mail address and my husband's name with his e-mail address.  When the e-mail comes to verifty, my results are:   "This e-mail address is already in use or you may already have........"  Same problem.  Has anyone been able to get some acknowledgement from support that there is a problem?

  • How can I set up a "receive only" email account in Outlook 2010

    I have an Outlook 2010 email account that receives emails from a "Fax-to email" service, and I'd like to make that accout "Receive Only".  Is it possible to do that, and if so, how.
    Capt. Dinosaur

    Hi
    As per the information and details provided by you, to set up a
    “Receive Only”email account in Outlook 2010, please follow these steps: -
    You have a few options available to you. You can set up the account with
    a fake SMTP server name and configure the Send/Receive group to not send mail from this account, or you can use a different, valid account for the Outgoing server, just in case you accidentally use the wrong account when you compose a message.
    First, create the account in Outlook: -
    Fill the name and address fields with the desired information. Select
    POP3 account type and enter the incoming server name.
    In the Outgoing server field, type
    nomail.
    Enter the correct username and password for the incoming mail account.
    If you want to verify the incoming server is correctly configured, click on
    Test Account Settings, and then choose the dialog after the incoming server is verified.
    Deselect the option to
    Automatically test account settings when the Next is clicked.
    Click on the
    Finish to return to Outlook.
    Because Outlook will error on every manual send and receive when it can not find the outgoing server error, you need to change the
    Send and Receive Settings for this account.
    Press
    Ctrl+Alt+A to open the Send/Receive Settings dialog. (or you can go to
    Send/Receive tab, Send/Receive Groups and select Define Send/Receive Groups.
    Click the
    Edit button.
    Select the receive-only account, then deselect
    Send Mail Items.
    Click on the
    OK, then Close to return to Outlook.
    I hope this information will be helpful for you.
    Thanks and regards
    Shweta@G

  • [ Solved ] Issue with Partitioning (setting the boot flag)

    I've tried to install Arch a few times. I always seem to run into this issue which affects me later on.
    fdisk (fdisk /dev/sda) doesn't provide me with the ability to set the boot flag on any of the partitions. Therefore I have issues when I get to the bootloader bit. (intend to use grub)
    When I use cfdisk (cfdisk /dev/sda), while its help does say pressing 'b' will toggle the flag, in all images I've seen of what cfdisk should look like there has been a column marked 'Flags'  - that isn't present for me. So, I have no way of knowing if it actually gets set, though I doubt it does.
    Partition Table is GPT.
    Though,
    fdisk -l gives
    Disk /dev/sda ~465.8 GiB
    Disk /dev/loop0 ~278.2 MiB //Not entirely sure what loop0 and loop1 are...
    Disk /dev/loop1 ~32 GiB
    Disk /dev/mapper... //the live image.
    I'm probably just making a simple mistake - though I have no idea what. Help?
    (Ruling out other errors, using latest dual architecture image, (using 86_64 UEFI) on this system; Asus X99 Pro, Core  i7 5820k, 16GB RAM, ~500GB SSD, generic video card).
    Last edited by AndyWM (2015-06-10 17:21:20)

    It's okay - I just decided to follow the beginner's guide again. It recommend the use of parted for GPT  when using UEFI. So I just did that,  I also went for gummiboot as the bootloader. Never used it before, but it seems to do the job...
    Did forget to create a user though, so I'll have to log in as root and do that.
    Anyway, I'll mark this as solved.

  • How to set "Cc" field in Dynamic Email address in Receiver JDBC adapter

    I have done the configuration for setting up the dynamic email address using the XSD provided by SAP in note no 748024. It is working fine.
    Michal's  blog “Mail Adapter (XI) - how to implement dynamic mail address.” was a gr8 help in doing this.
    But there is no clue of setting up of "CC" in email.
    There should be "CC" in email is our bussiness requirement.
    Would appreciate your helps.
    with regards
    Ravi Siddam

    HI,
    See fragment from help,
    Specifications for mail attributes:
    &#9675;       Under From, specify the e-mail address from which the message is sent.
    &#9675;       Under To, specify the e-mail address that will receive the message. If you enter more than one address, you must separate them with a semicolon.
    If you have specified an IMAP server under URL, the message is saved in the specified folder but is not sent to the receiver specified under To.
    &#9675;       Under Cc, specify the other e-mail addresses to which the e-mail is to be sent.
    These addresses are visible to the receiver.
    &#9675;       Under Bcc, specify the other e-mail addresses to which the e-mail is to be sent.
    These addresses are not visible to the receiver.
    &#9675;       Enter the Subject of the e-mail message.
    &#9675;       Specify whether you want to encode the content of the e-mail message. You have the following options:
    &#9632;       None
    &#9632;       Base64 (default value)
    &#9632;       quoted-printable
    Hope this helps.
    Regards,
    Akshay.
    reward points if find useful.

  • Can't set up mailbox for fourth email account on Mail?

    I have a Macbook Pro - Mid 2009 - 2.53GHZ, 4GB and 250GB HD.
    Running OS version 10.6.8.
    My specific question is this I am using Mail 4.6 and have already set up a primary email account and through time I have added an additional 3 email addresses. they are all from the same ISP. No problems so far until recently when I created a new email address through my ISP and tried to create a new mailbox on mail. For whatever reason I cannot access the new account and I have done the following steps:
    Made sure email address was correct and password too.
    Checked working mail preferences against the new email account
    Deleted one of the old working email mailboxes
    Phoned the ISP support and they checked everything
    Can access emails on the ISP webmail account
    Checked that SSL option was unchecked which it was
    After numerous phone calls to the ISP they have advised that I should phone Apple Technical support.
    As this computer is quite old I would need to pay £35GBP for this support.
    I cannot fathom why the previous mailboxes would work and now why subsequent new email accounts cannot be created on Mail.
    On previous mailboxes there would be a separate trash box for each account and in this case when I create a new account this is not created.
    Also the mailbox is greyed out and there is a warning symbol next to it.
    Does anyone have any ideas?
    P.S I am thinking of upgrading to a Macbook Pro Retina and wonder if there is a simple way of transferring my saved email folders to my new mac?

    Both of these are wrong.
    I finally set up .me.com on my Mac
    The same settings on my ipad are not working.
    AppleCare had to walk me through a bizarre set of steps
    Those same steps apparently are different on an ipad
    But .mac, .me account that exist can migrate with all you old aliases.
    I will try to remember to log back in here and answer this when apple calls me in a few hours

  • HELP, Plz- Yahoo vs Outlook -how can I get pdf docs to email thru Yahoo?

    When I scan document into computer thru adobe (whatever version they just automatically loaded), I have two problems
    1)  I can only get them to be emailed thru Outlook which I don't have and can't seem to cut & paste into Yahoo ... any suggestions, even in how I'm trying to do this.  Scanner is from 3-in-1 HP 8500A (if that helps)  I at least got most of the printer's capabilities to work on my own.
    2)  When I use Tool and convert pdf to some type of Word doc (doc/docx) - and then click on 'save' - I have no idea where they've been stored; I don't think I get any kind of choice.
    Anyone want to be a 'good-guys' attorneys advisor on little things -- good karma?  I work pro bono w/no staff help - even clean the office myself.  And despite, from the above clear indication of my astute comprehension of all things 'tech', I sometimes have what are probably simple (what a great secretary would already know --secretaries/legal assistants really run the show while the lawyer (or office cleaner) can just sound good.    PLZ just some help w/above questions... ? 

    Not sure how this used to work on your iPod Touch since there is no setting for an email account preferences to not save sent messages. With an IMAP account, there is an option to store sent messages on the server, or locally on the iPhone. There is no do not save sent messages setting, and the same for the email account preferences with a POP account.

  • How can I set up auto respond for email

    How can I set up auto respond for email?

    Hey there jimmac169,
    It sounds like you want to have the Mail app automatically reply to emails that come in. You can do this in the app itself, but in order for the function to work, Mail needs to be open. Take a look at this info from the following article:
    Mail (Yosemite): Reply to, forward, or redirect messages
    Automatically reply to or forward messages
    Mail must be open before it can automatically forward or reply to messages. If you want to send automatic replies when Mail isn’t open—like when you’re on vacation—check with the provider of your email account. 
    Choose Mail > Preferences, then click Rules.
    Click Add Rule, then type a name for the rule.
    Indicate whether any or all of the conditions must be true for the rule to be applied.
    Set the conditions that determine which messages to automatically reply to or forward.
    Choose options from the “Perform the following actions” pop-up menu.
    Forward messages: Choose Forward Message from the first pop-up menu, then enter the email addresses where you want to receive the forwarded messages. Click Message, then enter any text you want to include with the forwarded message. For example, you could explain that you’re automatically forwarding messages. 
    Reply to messages: Choose “Reply to Message” from the first pop-up menu, click “Reply message text,” then enter your reply. Mail includes the full text of the original message in your reply. 
    Click OK.
    Carefully consider the rules you create. If they’re too broad, messages can be sent inadvertently or create loops (replies to replies you sent). If possible, test the rules. 
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

Maybe you are looking for

  • Lines Going Across Monitor of iMac?

    Hello, I bought my iMac 3 Years Ago - iMac (24-inch Early 2008) - but within the last year I have begum to notice "lines" or "tears" going horizontally across parts of the screen. They show the colour of the screen, but can still be seen. They are se

  • Fraudulent activity- account hacked credit purcha...

    HOw do I contact skype? my account was hacked into and £150 of credit purchased using paypal whilst was abroad in Africa two weeks ago. I was (and still am) unable to contact skype. the contact us page says they are having problems and to post on for

  • Cannot remove context node

    Hi! I have 2 views and I navigate forth and back. On the second view I am creating a context node dynamically in method HANDLEFROM_INPUT_VIEW. Everything works fine for the first time. However, if I go back from the second view to the first one and t

  • Ipod source pane

    I just bought 80GB new ipod, after I installed Itunes 7.0 software and try upload my photos. But I couldn't find ipod source pane which supposed to be at R/H lower corner. But It doesn't show on itune after I pluged in Ipod to computer. also, not sho

  • Noob Chart Question

    Hello Once again. I have a request to show datatips/labels in a second chart when a user rollsover a complimentary datatip in the first chart is this possible?? If so how can it be done or where can I read about it? Thank you in advance.