How do i automatically send an email each monday

I just want to automatically send an email to our local buysellswop every Monday morning same mail each week

How is that related to Firefox support?

Similar Messages

  • How do I automatically send an email if the state of an LED is high?

    I've recently just got a NI MyDaq and have started using Labview. I've made a simple program that sounds an alarm if the noise level is above a certain level or if one of the switches has been activated but I now am not able to figure out how to send an email msg if the alarm has been triggered. Please help, thank you.   

    Here's a VI that will probably help you out:
    http://zone.ni.com/reference/en-XX/help/371361H-01/lvcomm/email_vis/SMTP Send
    Cheers Marc

  • How would I import multiple Roadrunner emails each with multiple folders and continue to use my Roadrunner email to send and receive?

    How would I import multiple Roadrunner emails each with multiple folders into Apple Mail and continue to use my Roadrunner email to send and receive from within Mail?

    Try this.. Click the first in the CC field hold Shift, Click the Second Third, Fouth, Fifth and so on... click right Mouse select add to Contacts.

  • How can I active  send by email button in reader

    Send by email button works perfectly in acrobat pro. But it does not work in reader.
    How can I active send by email button in reader?
    Please Suggest me......

    Thanks to join  in this field.
    I have got answer.

  • How to change the sender's email (class  cl_sapuser_bcs) ?!?

    Hi Friends,
    Currently, I use class CL_BCS to sending an email. I've set sender as below :
    data: sender type ref to cl_sapuser_bcs.
    sender = cl_sapuser_bcs=>create( sy-uname ).
    call method send_request->set_sender
    exporting
    i_sender = sender.
    But I don't know how to change the sender's email to a specific email address, i.e: [email protected]
    Anyone can tell me how?
    Thanks,
    Gy

    DATA: recipient          TYPE REF TO if_recipient_bcs.
    sender = cl_sapuser_bcs=>create( sy-uname ).
          CALL METHOD send_request->set_sender
            EXPORTING i_sender = sender.
        --------- add recipient (e-mail address) -----------------------
        create recipient - please replace e-mail address !!!
         <b> recipient = cl_cam_address_bcs=>create_internet_address(
                                            '[email protected]').</b>
        add recipient with its respective attributes to send request
          CALL METHOD send_request->add_recipient
            EXPORTING
              i_recipient  = recipient
              i_express    = 'X'.
    Message was edited by:
            Hymavathi Oruganti

  • Outlook automatically sending blank emails

    My Outlook is automatically replying to my emails with a blank message. My autoreply is turned off. I have changed my password and done a virus scan with no luck in reversing this problem.

    Hi,
    Which version of Outlook are you using?
    Does this issue happen to all emails you received?
    Does this issue continue if we receive emails from webmail site?
    Please make sure you don't have any rule set to automatically send out emails. To check this, click Home tab > Rules > Manage Rules & Alerts, and then check if there is any related rule in the rules list.
    If you installed any third-party add-in, please also try to temporarily disable the add-in and then test the issue again. If you have a virus scanner installed, please note that it may integrate itself with Outlook, which may also cause this issue. Please
    contact the virus scanner support and disable the integration into Outlook to see the result.
    Please let me know the result.
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • How to stop automatic replies to emails sent to my address?

    We receive hundreds of spam/solicitation emails each day. Many, if not most, automatically send a reply to the sender thus validating our email address. Yesterday, I deleted almost 3000 emails from my send file that show being sent by us back to the originator of the email.
    Is there a way to block this action?

    Tools menu (Alt_T) > Account settings > Return receipts for the "per account" settings and a link to the global setting. If however your using Microsoft Exchange or another corporate mail server you may have no choice in the matter. The server over rides local settings, and adjustment required the server admin to make changes.

  • How can I to send an email with a longer than 50 characters subject?

    I'm trying to send an email through an abap program ( report ), but when the email arrives to the SOST transaction the subject is cut to 50 characters. How can I send an email with a longer than 50 characters subject?

    check this below code and do changes in ur report
    FORM SEND_MAIL_SUPPORT  TABLES   P_EM_BODY
                            USING    P_TITLE.
    *_ Start of the code to send an email notification
      DATA : ATTACH_REC TYPE I.
      DATA: OBJPACK LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER LINE,
            OBJHEAD LIKE SOLISTI1 OCCURS 1 WITH HEADER LINE,
            OBJBIN LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE,
            OBJTXT LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE,
            DOC_CHNG LIKE SODOCCHGI1,
            TAB_LINES LIKE SY-TABIX.
    Creation of the document to be sent
      DOC_CHNG-OBJ_NAME = 'Mat Attach'(010).
      DOC_CHNG-OBJ_DESCR = P_TITLE.
      APPEND LINES OF P_EM_BODY TO 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 IT_ERROR LINES ATTACH_REC.
      IF ATTACH_REC GE '1'.
    *Start of email attachement of internal table conversition
       APPEND LINES OF IT_ERROR TO OBJBIN.
    WRITE: '----
    ' TO OBJBIN.
    APPEND OBJBIN.
    CLEAR OBJBIN.
    CONCATENATE 'CCode.' 'A/CDocNum.' '  FYear.' 'DType.' 'PDate.' '  RefField.' INTO
                 V_TEXT SEPARATED BY ' '.
    APPEND V_TEXT TO OBJBIN.
    CLEAR V_TEXT.
    WRITE: '----
    ' TO OBJBIN.
    APPEND OBJBIN.
    CLEAR OBJBIN.
    LOOP AT IT_ERROR.
    CONCATENATE IT_ERROR-BUKRS IT_ERROR-BELNR IT_ERROR-GJAHR IT_ERROR-BLART
                 IT_ERROR-BUDAT IT_ERROR-STATUS INTO V_TEXT SEPARATED BY '   '.
    APPEND V_TEXT TO OBJBIN.
    CLEAR V_TEXT.
    ENDLOOP.
    WRITE: '----
    ' TO OBJBIN.
    APPEND OBJBIN.
    CLEAR OBJBIN.
        DESCRIBE TABLE OBJBIN LINES OBJPACK-BODY_NUM.
        OBJPACK-TRANSF_BIN = 'X'.
        OBJPACK-HEAD_START = 1.
        OBJPACK-HEAD_NUM = 1.
        OBJPACK-BODY_START = 1.
        OBJPACK-DOC_SIZE = OBJPACK-BODY_NUM * 255.
        OBJPACK-DOC_TYPE = 'RAW'.
        OBJPACK-OBJ_DESCR = 'List of Error Documents'(012).  " Description
        APPEND OBJPACK. CLEAR OBJPACK.
      ENDIF.
      RECLIST-RECEIVER = S_EMAIL-LOW.
      RECLIST-REC_TYPE = 'U'.
      RECLIST-COPY = 'X'.
      APPEND RECLIST.
    Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          DOCUMENT_DATA              = DOC_CHNG
          PUT_IN_OUTBOX              = 'X'
          COMMIT_WORK                = '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.
    *CHECK SY-SUBRC = 0.
    ENDFORM.                    " SEND_MAIL_SUPPORT

  • Automate sending of emails with a link

    At the end of each week I need to mail out a link. This link is a link to folder on a windows network.
    Its one of those tasks that I have made a little quicker by making a template in mail.app. However I have to go in and amend that link each week so that it points to the right location. This is tedious still and as a result human mistakes can still be made.
    This is my process at the moment
    In mail app I select a templates
    Then I select send again or use the keyboard short
    the subject then needs to be amended and I replace the XX with the week number.
    then I select the link ctrl click and select edit link
    Again both of the XX get replaced with the week number.
    once complete I then hit send.
    Then move onto the next brand.
    I'm wondering if this could be applescripted?
    The first option would be week number
    then this is slightly more involved but some kind of selection box to select which brands to recieve the email?
    I've looked up a number of scripts and link/html mail seams to be very awkward.
    Hopefully I have covered everything that needs to be listed
    Matt

    This is what my script looks like at the moment, for some reason the email recieved (on a windows) leaves the link un clickable, its odd behaviour as I can not see any difference in the html section either?  Can you take a moment to see if anything is missing?
    tell application "Mail" to quit
    --while mail is closed, add in the default Reply-To key in a UserHeaders dictionary
    do shell script "defaults write com.apple.mail UserHeaders '{\"Reply-To\" = \"[email protected]\"; }'"
    display dialog "Please enter the current week number." default answer ""
    set weekNumber to text returned of the result
    set brandsToUse to choose from list {"A", "B", "DAE", "DP", "Div", "Fr", "Int", "Mat", "TM", "Ws", "photography"} with prompt "Choose brands to send out." with multiple selections allowed
    -- get the html template
    set htmlTemplate to read "Users/matthew/WorkFlow/EMAIL PROJECT/content.html"
    considering case
      -- this section splits the template text at every XX, then rejoins it using the week number
              set htmlTemplate to tid(htmlTemplate, "XX")
              set htmlTemplate to tid(htmlTemplate, weekNumber)
    end considering
    tell application "Mail"
              set subjectLine to "Week " & weekNumber & " images"
              repeat with thisBrand in brandsToUse
                        considering case
      -- this section adds the brand name, done inside the loop because it's different for each email
      -- the 'my' keyword is needed because you're calling a handler from within a tell block
                                  set htmlContent to my tid(htmlTemplate, "*LOGO*")
                                  set htmlContent to my tid(htmlContent, brandsToUse)
                        end considering
      -- create a new message.  visible must be false for the 'html content' line to work correctly
                        set newMessage to make new outgoing message with properties {subject:subjectLine, visible:false}
                        tell newMessage
      -- create a variable recipient address based on brand name
      make new to recipient at end of to recipients with properties {address:"All" & thisBrand & "[email protected]"}
                                  set html content to htmlContent
      -- send the email
      send
                        end tell
              end repeat
    end tell
    on tid(input, delim)
      -- generic handler for doing text item delimiters
              set {oldTID, my text item delimiters} to {my text item delimiters, delim}
              if class of input is list then
                        set output to input as text
              else
                        set output to text items of input
              end if
              set my text item delimiters to oldTID
              return output
    end tid
    tell application "Mail" to quit
    --wait till Mail is closed, then remove the dictionary
    delay 3
    do shell script "defaults delete com.apple.mail UserHeaders"
    say "All done."
    tell application "Mail" to activate
    >>>>>>
    HTML
    <html>
    <head>
            <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
            <title>Sticky</title>
    </head>
    <body style="background:url(bg_pattern.jpg) 50% 0;margin:0;padding:0">
    <div style="background:url(bg_pattern.jpg) 50% 0;height:100%;width:100%;">
    <table id="main-table" width="342" cellpadding="0" cellspacing="0" align="center">
              <tr>
                        <td id="body-center" width="342" background="note.jpg" style="line-height:2">
                                  <table cellspacing="0" cellpadding="0" class="spacing-table-for-ie5-and-hotmail">
                                            <tr>
                                                      <td width="39" rowspan="2" class="left-gutter-spacing" style="font-size:1px"> </td>
                                                      <td width="245" class="top-gutter-spacer" height="47"> </td>
                                                      <td width="58" rowspan="2" class="right-gutter-spacing" style="font-size:1px"> </td>
                                            </tr>
                                            <tr>
                                                      <td class="content-holder" height="313" align="center" valign="top">
                                                      <div class="max-height-wrap">
                                                                <div class="body-content" id="body-content" style="line-height:1.3">
                                                                          <font face="Chalkboard, Marker Felt, Comic Sans, sans-serif" color="#22559c" style="font-size:32px;">
                                                                          <div contenteditable="true" apple-content-name="body" style="display:block;width:245px;height:253px;overflow:hidden">
                                                                           <DIV><a href="file:///%5C%5Curanus%5Cdckgen%5CBrands%5CZoom%5CBrand%20-%20Zoom%5CUpload %20Photos%5C2012%5CWeekXX%5C*LOGO*_WKXX_LR">Push to View</a></div></DIV>
                                                                          </div>
                                                                          </font>
                                                                </div>
                                                      </div>
                                                      </td>
                                            </tr>
                                  </table>
                        </td>
              </tr>
    </table>
    </div>
    </body>
    </html>

  • HT2500 how do i automatically save all emails after i have read them

    How do I set up Mail to automatically save all emails that I have read?

    Unless Mail has changed in Mountain Lion, which I don't use, you shouldn't have to do anything. They should just remain where they were. Are they disappearing after being read?
    Maybe there's some Preference in 10.8 Mail I don't know about. In my 10.6 Mail, I would Open>Mail>Preferences>Accounts>Mailbox Behaviors. Should be at that location in ML Mail>Preferences or somewhere in Preferences.
    Btw, you're in the Snow Leopard (10.6) forum.

  • How do I Automatically Send a PDF for Shared Review?

    Hello,
    I am trying to automate sending documents for shared review. Basically, all my users post PDFs to the same location and so they perform all the same actions. I would like to make it easier on them and automatically trigger all the actions. Currently, I am using Acrobat.dll in a C# program, but I am not adamant about using this particular technology. All I could get was:
    Acrobat.AcroAppClass acro = new Acrobat.AcroAppClass();           
    acro.MenuItemExecute("SendForSharedReview");
    This opens the shared review wizard, and I can send keystrokes to the wizard dialog box, but I am hoping there is a more elegant method of doing it. Is there an API that I should be using or some other method to automatically trigger a shered review on a selected document?
    Thanks,
    Pawel

    It took a while to figure out, but I confirmed it with Adobe staff. The answer is no; sending multiple documents for shared review is not possible with LiveCycle or with any other Adobe software.
    The only thing to do would be automate with some kind of clicker application or AutoIt, but that is far from ideal.

  • Hows this sound? Send an email that contains HTML button to update DB?

    My thought is to send an email containing a link that when clicked it calls a page with several items and their values and the page has no authorization or authentication to update a record in the DB.
    Can I send a session id or key to secure it as good as possible?
    Thanks, Bill

    We do this to confirm the email address a user has entered in a registration form. We write a unique code created with SYS_GUID() to a field in the USERS table, then send an email to the user containing a link that includes that code. When they click on the link, they are confirmed as registered and the activation code is deleted so that the link can't be used again.

  • How to change the sender's email address

    Basically, is there a way of changing the sender's address when using the hub to send emails from Gmail?
    I have the following domain / email registered with Enom: {REMOVED}. But, when I signed up to Gmail I had to use one of their email addresses: {REMOVED}. This is now my login name into Gmail.
    But I don't want people to see {REMOVED} whenever I send an email.
    Whilst using Gmail, I use the feature "Check email from other accounts" and here I have entered "{REMOVED}". What happens is that, whenever anyone sends an email to {REMOVED}, Gmail intercepts it and they show up within Gmail. 
    Also, in Gmail's accounts section, I tell it to "Send mail as" to {REMOVED}. So, when I send an email, it says that it has come from {REMOVED}. That's great.
    However, when I send an email using Blackberry's Hub from Gmail, it says that it has come from {REMOVED}. Is there any way of altering this?
    I have downloaded the Gmail app, and does what I want. But I would rather use the hub to send emails. So is there any way to change the sender's address?
    Thanks.
    Mod Edit: Removed personal information to comply with Community Guidelines and Terms and Conditions of Use.

    Hello thirtynine,
    When sending email via Gmail from your BlackBerry 10 smartphone, the primary address will always appear on the sent message. This cannot be edited to appear as another address.
    Thank you.
    -FB
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click "Accept as a Solution" for posts that have solved your issue(s)!

  • How do I automatically send email messages to Junk

    My inbox is loaded with unwanted messages some from dubious sources. I would like to selectively send them to the Junk folder before they appear in my inbox

    That is not a Firefox issue.
    Some e-mail providers have an option to filter incoming mail. Some also
    will send all mail to the junk / spam folder unless the user allows them
    to go to the inbox. Check with your e-mail provider.

  • Automatically send by email the result of a scheduled workbook Discoverer

    Hi
    is their any way to send emails automatically from discoverer 4i, the results of the scheduled workbooks!
    if not in 4i whether it can be done in 9i?
    -Seetha

    Hello,
    I have the same requirement .. I need to email dicoverer report to about 40 - 50 clients. I need to pass the clients name as paramter to the workbook and send the report output to the corresponding client.
    Can some body please tell me how this can be done using batch file. Is it possible to pass parameters to workbooks and run the disc report from the batch file.
    Thanks in advance.

Maybe you are looking for

  • Am signed in to Adobe and trying to edit a form.  Can pull up form but it will not allow me to me to edit the form.  What am I doing wrong?

    Am signed in to Adobe and trying to edit a form.  Can pull up form but it will not allow me to edit the form.  What am I doing wrong?

  • Caching Issue with Java Portal....Need Help ASAP!

    We are deploying a JAVA & .NET enviornment. We have a Java Portal Server that connects to the .NET enviornment. We seem to have a problem with the caching on the JAVA portal...any help you could provide would be much needed!!

  • Windows 2008 64 bit

    Hi; Can i use Oracle Database 10g Release 2 (10.2.0.1.0) for Microsoft Windows (x64) for windows 2008 64 bit? I need to install 10.2.0.1 than uprgade it 10.2.0.3 for my purpose, In installation guide it says: Oracle Database is supported on Windows V

  • MARS - "Sudden increase of traffic to a port" rule

    Hello. I duplicated the system rule "Sudden increase of traffic to a port" in MARS and it blew out the original system rule and now shows up as a user rule. It doesn't appear to be working either. It is active. Not sure what to make of this, and neit

  • Distributed txn error

    Hi , I have been getting distributed txn error : "ORA-02046: distributed transaction already begun ORA-02063: preceding line from cost_dblink "--> it can last for few hours before the report can be accessed and i am clueless of what really happened e