How to block emails with specific sender name?

I find some of the spam emails has a common sender name, but the sender email address is random. How to create an Outlook rule to block such emails? It seems Outlook rule can only blocks emails based on sender email address, not the sender name.
Also is it possible to block emails based on its language, for example, I want to block all emails in Russian.

Hi,
I'm marking the reply as answer as there has been no update for a couple of days.
If you come back to find it doesn't work for you, please reply to us and unmark the answer.
Best Regards,
Steve Fan
Forum Support
Come back and mark the replies as answers if they help and unmark them if they provide no help.
If you have any feedback on our support, please click
here

Similar Messages

  • How to auto create a global variable with specific variable name in a global vi ?

    how to auto create a global variable with specific variable name in a global vi using lv ? Because i need to add a lot of global variable in this global vi. But you know, if  i manually add them , it will be a much time-costing work. So i want to use someway to auto generate ? Can i ?? Thanks a lot !

    Hi
    what aartjan is saying is the way for you. but you can develop an utility which will actually help you create global variables. To get the details on this just have a look at VI Scripting section on LAVA forum.
    But i would like you to suggest few things
    1. If your programs have so many global variables (Thats why u want utility) then you should take out some time to read about LabVIEW design patterns. I think if programmer follows these practicess he dont need a single global variable.
    2. Their are some other ways to achieve similar functionality as of global variables (Uninitialized Shift Registers, Single Element Qs and so on) but they are much faster than global variables.
    I am Attaching Whatever Resources i am having I will also attach the template of the design pattern i generaly use in short duration
    Message Edited by Tushar Jambhekar on 10-06-2005 07:33 PM
    Message Edited by Tushar Jambhekar on 10-06-2005 07:36 PM
    Tushar Jambhekar
    [email protected]
    Jambhekar Automation Solutions
    LabVIEW Consultancy, LabVIEW Training
    Rent a LabVIEW Developer, My Blog
    Attachments:
    LabVIEWDesignPatterns.zip ‏1505 KB
    Large_Code_Implementation.zip ‏522 KB
    Database Tests.zip ‏868 KB

  • Abap cod e required  for  send an email with specific template

    hi guru's
    i want to send an email with specific template ,which contain some email links in the body of the email,and some of the font will be in different colour
    i want load the template it in to abap program as it is.is this possible. please let me know.
    where can i maintain the template,

    hello
    check this may help u
    TABLES: ekko.
    PARAMETERS: p_email TYPE somlreci1-receiver
    DEFAULT 'xyzlive.com'.
    TYPES: BEGIN OF t_ekpo,
    ebeln TYPE ekpo-ebeln,
    ebelp TYPE ekpo-ebelp,
    aedat TYPE ekpo-aedat,
    matnr TYPE ekpo-matnr,
    END OF t_ekpo.
    DATA: it_ekpo TYPE STANDARD TABLE OF t_ekpo INITIAL SIZE 0,
    wa_ekpo TYPE t_ekpo.
    TYPES: BEGIN OF t_charekpo,
    ebeln(10) TYPE c,
    ebelp(5) TYPE c,
    aedat(8) TYPE c,
    matnr(18) TYPE c,
    END OF t_charekpo.
    DATA: wa_charekpo TYPE t_charekpo.
    DATA: it_message TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
    WITH HEADER LINE.
    DATA: it_attach TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
    WITH HEADER LINE.
    DATA: t_packing_list LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
    t_contents LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    t_receivers LIKE somlreci1 OCCURS 0 WITH HEADER LINE,
    t_attachment LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    t_object_header LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    w_cnt TYPE i,
    w_sent_all(1) TYPE c,
    w_doc_data LIKE sodocchgi1,
    gd_error TYPE sy-subrc,
    gd_reciever TYPE sy-subrc.
    *START_OF_SELECTION
    START-OF-SELECTION.
    *Retrieve sample data from table ekpo
    PERFORM data_retrieval.
    *Populate table with detaisl to be entered into .xls file
    PERFORM build_xls_data_table.
    *END-OF-SELECTION
    END-OF-SELECTION.
    *Populate message body text
    perform populate_email_message_body.
    *Send file by email as .xls speadsheet
    PERFORM send_file_as_email_attachment
    tables it_message
    it_attach
    using p_email
    'Example .xls documnet attachment'
    'XLS'
    'filename'
    changing gd_error
    gd_reciever.
    *Instructs mail send program for SAPCONNECT to send email(rsconn01)
    PERFORM initiate_mail_execute_program.
    *& Form DATA_RETRIEVAL
    *Retrieve data form EKPO table and populate itab it_ekko
    FORM data_retrieval.
    SELECT ebeln ebelp aedat matnr
    UP TO 10 ROWS
    FROM ekpo
    INTO TABLE it_ekpo.
    ENDFORM. " DATA_RETRIEVAL
    *& Form BUILD_XLS_DATA_TABLE
    Build data table for .xls document
    FORM build_xls_data_table.
    CONSTANTS: con_cret TYPE x VALUE '0D', "OK for non Unicode
    con_tab TYPE x VALUE '09'. "OK for non Unicode
    *If you have Unicode check active in program attributes thnen you will
    *need to declare constants as follows
    *class cl_abap_char_utilities definition load.
    *constants:
    con_tab type c value cl_abap_char_utilities=>HORIZONTAL_TAB,
    con_cret type c value cl_abap_char_utilities=>CR_LF.
    CONCATENATE 'EBELN' 'EBELP' 'AEDAT' 'MATNR'
    INTO it_attach SEPARATED BY con_tab.
    CONCATENATE con_cret it_attach INTO it_attach.
    APPEND it_attach.
    LOOP AT it_ekpo INTO wa_charekpo.
    CONCATENATE wa_charekpo-ebeln wa_charekpo-ebelp
    wa_charekpo-aedat wa_charekpo-matnr
    INTO it_attach SEPARATED BY con_tab.
    CONCATENATE con_cret it_attach INTO it_attach.
    APPEND it_attach.
    ENDLOOP.
    ENDFORM. " BUILD_XLS_DATA_TABLE
    *& Form SEND_FILE_AS_EMAIL_ATTACHMENT
    Send email
    FORM send_file_as_email_attachment tables pit_message
    pit_attach
    using p_email
    p_mtitle
    p_format
    p_filename
    p_attdescription
    p_sender_address
    p_sender_addres_type
    changing p_error
    p_reciever.
    DATA: ld_error TYPE sy-subrc,
    ld_reciever TYPE sy-subrc,
    ld_mtitle LIKE sodocchgi1-obj_descr,
    ld_email LIKE somlreci1-receiver,
    ld_format TYPE so_obj_tp ,
    ld_attdescription TYPE so_obj_nam ,
    ld_attfilename TYPE so_obj_des ,
    ld_sender_address LIKE soextreci1-receiver,
    ld_sender_address_type LIKE soextreci1-adr_typ,
    ld_receiver LIKE sy-subrc.
    ld_email = p_email.
    ld_mtitle = p_mtitle.
    ld_format = p_format.
    ld_attdescription = p_attdescription.
    ld_attfilename = p_filename.
    ld_sender_address = p_sender_address.
    ld_sender_address_type = p_sender_addres_type.
    Fill the document data.
    w_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
    w_doc_data-obj_langu = sy-langu.
    w_doc_data-obj_name = 'SAPRPT'.
    w_doc_data-obj_descr = ld_mtitle .
    w_doc_data-sensitivty = 'F'.
    Fill the document data and get size of attachment
    CLEAR w_doc_data.
    READ TABLE it_attach INDEX w_cnt.
    w_doc_data-doc_size =
    ( w_cnt - 1 ) * 255 + STRLEN( it_attach ).
    w_doc_data-obj_langu = sy-langu.
    w_doc_data-obj_name = 'SAPRPT'.
    w_doc_data-obj_descr = ld_mtitle.
    w_doc_data-sensitivty = 'F'.
    CLEAR t_attachment.
    REFRESH t_attachment.
    t_attachment] = pit_attach[.
    Describe the body of the message
    CLEAR t_packing_list.
    REFRESH t_packing_list.
    t_packing_list-transf_bin = space.
    t_packing_list-head_start = 1.
    t_packing_list-head_num = 0.
    t_packing_list-body_start = 1.
    DESCRIBE TABLE it_message LINES t_packing_list-body_num.
    t_packing_list-doc_type = 'RAW'.
    APPEND t_packing_list.
    Create attachment notification
    t_packing_list-transf_bin = 'X'.
    t_packing_list-head_start = 1.
    t_packing_list-head_num = 1.
    t_packing_list-body_start = 1.
    DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.
    t_packing_list-doc_type = ld_format.
    t_packing_list-obj_descr = ld_attdescription.
    t_packing_list-obj_name = ld_attfilename.
    t_packing_list-doc_size = t_packing_list-body_num * 255.
    APPEND t_packing_list.
    Add the recipients email address
    CLEAR t_receivers.
    REFRESH t_receivers.
    t_receivers-receiver = ld_email.
    t_receivers-rec_type = 'U'.
    t_receivers-com_type = 'INT'.
    t_receivers-notif_del = 'X'.
    t_receivers-notif_ndel = 'X'.
    APPEND t_receivers.
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
    EXPORTING
    document_data = w_doc_data
    put_in_outbox = 'X'
    sender_address = ld_sender_address
    sender_address_type = ld_sender_address_type
    commit_work = 'X'
    IMPORTING
    sent_to_all = w_sent_all
    TABLES
    packing_list = t_packing_list
    contents_bin = t_attachment
    contents_txt = it_message
    receivers = t_receivers
    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.
    Populate zerror return code
    ld_error = sy-subrc.
    Populate zreceiver return code
    LOOP AT t_receivers.
    ld_receiver = t_receivers-retrn_code.
    ENDLOOP.
    ENDFORM.
    *& Form INITIATE_MAIL_EXECUTE_PROGRAM
    Instructs mail send program for SAPCONNECT to send email.
    FORM initiate_mail_execute_program.
    WAIT UP TO 2 SECONDS.
    SUBMIT rsconn01 WITH mode = 'INT'
    WITH output = 'X'
    AND RETURN.
    ENDFORM. " INITIATE_MAIL_EXECUTE_PROGRAM
    *& Form POPULATE_EMAIL_MESSAGE_BODY
    Populate message body text
    form populate_email_message_body.
    REFRESH it_message.
    it_message = 'Please find attached a list test ekpo records'.
    APPEND it_message.
    endform. " POPULATE_EMAIL_MESSAGE_BODY
    Thank u,
    santhosh

  • What to do about email with no sender?

    I get email with no sender on my iPad only (not on my computer and not in webmail).  There is no sender or no message, and it is dated 12/31/69. It will not delete.  My ipad inbox is filled with this stuff now and I don't know what to do about it. I get 2 or 3 a day.  Another post that I googled said they also had this but that it would delete.  Mine will not, and this is getting to be a major problem.
    I don't think I can set up a rule on the iPad to stop it.  And, any rule that I set up on my iMac does not carry over to the iPad.

    Janice Fisher wrote:
     After 12 Hours the ipad was only 75 percentPercent charged.  Not sure what that means except that I'll have to pay a small fortunennkn,njjjkk for a data sync cord. The long and inexpensive one doesn't work apparently.
    I am not sure what you mean.
    How are you recharging the iPad battery?
    What do you mean by "data sync cord"? The USB cable supplied with every iPad? What "long and inexpensive one"?
    Using the 10W USB power adapter, I can recharge my iPad's battery from 0% to 100% in just under 4 hours.
    I am recharging the exhausted battery right now, and after 2 hours it has reached 64%.

  • Use smart mailbox to find email with specific text in attached pdf

    Does anyone known if a smart mailbox can be created to find emails with specific text within a pdf attached document. I know that spotlight can do this and it works fine but it would suite me better to be able to do this in mail.

    After some digging, I found that Spotlight returns the pdf attachment (found within the library/mail/download folder), but not the actual email. The only time it returns the email is if the search text or numerics are coincidentally within the written contents or subject line.
    Yes, i have tried setting up smart mailbox search criteria using the entire message contents but this does not find emails where the text exist within the pdf.
    I've checked spotlight pref.'s and all categories are checked off.
    Essentally, i need the smartbox search criteria to return results where the search text is found within the pdf attachment if possible. If this is not possible, i'll continue using spotlight searches outside of mail.
    I appreciate any help you can offer.

  • Exchange Server 2013 - Mailflow - Transport Rules - Forwarding Emails with Specific Text to Another Email Address

    Hi There,
    We are soon to implement Exchange 2013.
    Question: Is it possible to have emails with specific text such as "..SND.." to an other email address specified as well as the original recipient?
    Thanks very much.
    Lisa.

    Hi Amit,
    Thanks for answering my question. I have one more. To enable rules like this do you need to have an Exchange Edge Transport server installed or is this configured from an admin console within Exchange itself?
    Thank you,
    Lisa
    Lisa Stanley

  • How can I find the specific channel name and modify channel name in automatically in VBS?

    How can I find the specific channel name and modify channel name in automatically in VBS? (DIAdem 9.1)
    I would like to change channel name = "speed01" ... "speed10"  to  channel name = "velocity01"..."velocity10.
    martino

    Hello Martino,
    this script will help:
    Option Explicit
    Dim i
    Dim n
    For i=1 To 10
    If i < 10 then
    n = CNo("speed0" & i)
    Else
    n = CNo("speed" & i)
    End If
    If n > 0 Then
    If i < 10 then
    ChnName(n) = "velocitiy0" & i
    Else
    ChnName(n) = "velocitiy" & i
    End If
    End If
    Next
    Matthias
    Matthias Alleweldt
    Project Engineer / Projektingenieur
    Twigeater?  

  • How to export RTF with paragraph style names?

    Anybody can help me "how to export RTF with paragraph style names?"
    Thank you

    It's not something that's natively done with Indesign.
    However it's possible that it might be able to be scripted.
    Check the scripting forum
    http://forums.adobe.com/community/indesign/indesign_scripting

  • Can I set up email with my domain name?

    My domain name and the website is set up under GypsyOwlProductions.com with Adobe Muse CC. Can I set up email with my domain name like: [email protected] I would like customers to be able to email to me from outside the website. I have set up yahoo and gmail accounts for my business, and would like the mail from (exp) [email protected] be redirected to either my gmail or yahoo. is that possible?

    HI,
    If you have Free sites with creative cloud, then these sites do not allow you to host your email with BC. You can either upgrade your website to higher site plan, or chose one of the alternative email host, given in the following link
    Business Catalyst Help | Creative Cloud Sites / Set up email
    Do let me know if you have any question.

  • How to block email attachments only from a specific domain?

    Using C370 CISCO IronPort How do I block email attachments only from a specific domain?

    Hi Daniel,
    In order to achieve this, you have three options:
    1. Using a new Incoming Mail Policy
    - Create a new Incoming Mail Policy and define that domain as sender in policy members.
    - Then create an Incoming Content Filter with a condition to match specific file info (for example: filetype, name, size, mime type, etc.)
    - Define an action (quarantine, bounce, drop, etc.)
    - Enable this filter in newly created Incoming Mail Policy
    2. Using existing Incoming Mail policies
    - Create a new Incoming Content Filter with condition to match sender address containing that domain.
    - Add another condition to match specific file info (for example: filetype, name, size, mime type, etc.)
    - Use "Apply Rule" as "Only if all conditions match"
    - Define an action (quarantine, bounce, drop, etc.)
    - Enable this Content Filter in all Incoming Mail Policies.
    3. Using Message Filters
    - From CLI -> filters add a new message filter like below:
    block_attchment_example_com:
    if (mail-from == "(?i)example.com$")
        if (attachment-filetype == "exe")
            drop();
    - Please replace the mail-from domain with the actual domain.
    If you wish to block all attachments, you can chose attachment size rule in all of above three options with a really smaller attachment size, this will result in matching messages that has an attachment.
    Hope this will help.
    Rehan

  • How do i change the my sender name that is appearing in my email that's incoming? its correct on my iPhone email and my internet carriers email access site.

    How do i change my sender name that is appearing in my email that's incoming? it's correct on my iPhone email and my internet carriers email access site, but not on my imac email. for instance, when someone else gets my email...it says its from "mike Hoak".  I need it to be me (Karen), not one of my random contacts.  not sure how it even happened.

    Hi karen elizabeth I,
    I understand that you want to change the full name associated with your email account in Mail on OS X. Here is an article that will help you find this setting and adjust it:
    Mail settings you might need from your email provider - Apple Support
    http://support.apple.com/en-is/HT1277
    This setting can be found by going to your Mail Preferences, then the Accounts tab, then selecting your account. Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • How to block email from a specific address?

    What are the steps required to block email?

    Hi johnav,
    Although I'm not finding a setting to block an "incoming" email address like you can for FaceTime calls but you can set up a rule to automatically delete email from a particular email.
    Use rules to manage your inbox - Mail Help
    Would that work for you?
    Best,
    Nubz

  • Not receiving some emails from specific sender.

    Hi.I just started getting the problem of not receiving some emails. I have not had this problem with the sender until yesterday.  My sender is sending me emails from gmail, some with attachments and some without, to my comcast email and it's not getting through. It is just one specific sender that I know of. I narrowed it down to my comcast account because I had the sender send myself the email to my comcast address and cc me on my gmail address. I received it on my gmail account but not my comcast account. I use Outlook for comcast but I even checked the webmail on comcast with nothing there. I checked the spam folder also and it's not there. Please help, these are important emails. Thank you.

    Same issue, as far as I know it is just 1 person.  But I have no way of knowing.  I also had them CC my Gmail and it went through to Gmail but not my comcast.  I then had them use a secondary comcast email and it didn't go through.  Comcast seems to be blocking this person for some unexplained reason.  It's frustrating and so far has cost me $525 because they thought I was ignoring them.  They are using my Gmail until I get it straightened out, so the financial loss shouldn't increase, I just hope others aren't having the same problem and I don't know about it.  

  • How to block email

    how to block an  email address from sending me email? 

    Try this link
    My Verizon Online Sign In - Verizon Wireless
    Otherwise search for internet spam blocking in the I Want To box once logged in
    There are check boxes for block all text messages sent from email and block all text messages sent from web.
    Or you can block specific email addresses if you think that would work for your situation.

  • Verizon blocking emails with the word Singapore

    Really annoying - within the past week, any email I try to send with the word Singapore in the subject, sometimes in the message, is being blocked by the Verizon outgoing mail server as spam. You'd think they would check the number of "to" addresses when trying to control spam. If I am emailing only one or two people, how can it be spam? I keep forwarding the emails to their spam reporting address, but so far no action.
    Verizon is also blocking emails coming to me with a .asia  address - they don't even make it into my spam folder on Outlook.
    Does anyone have any suggestions? 

    Yeah, the spam filter was updated recently.
    I would suggest taking a stroll over to http://www.verizon.net/spamfaq and read that.
    Also, if you are still having problems with sending an email which you think doesn't deserve to be blocked, which in your case shouldn't, shoot an email to: [email protected] .  This goes to a third-party group who verifies if said email is spam  and can help remove it once they investigate.  They will notify Verizon and that everything checks out and it, in turn, prompts Verizon to flip a switch so your email can get through without a problem.
    As far as emails being sent to you being blocked, you could always goto www.verizon.net/whitelist -- there you can request to allow emails to be sent through.
    Hopefully those avenues will work out for ya. 

Maybe you are looking for