Receiver mail channel - Configuration of  email id's

Hi,
I am using mail package in receiver mail channel. Is there anyway that we can configure the 'To' email id's in the integration directory with mail package being used (either by adding some entries in the  module/identifiers tabs etc., ?
I don't want to have the email id's to be taken either through mapping or property file etc.,
I appreciate your reply.
Regards
Gopal

Hi RGopal,
If the payload is in mail package format, the header information is used for the e-mail. For that make the entries for mail attributes (From, To, Subject).
Specifications for mail attributes:
1.On the Parameters tab page of the communication channel you have created newly or the existing one ; select the adapter type Mail.
2.Then select the Receiver radio button to define the adapter as a receiver adapter.
○       Under From, specify the e-mail address from which the message is sent.
○       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.
○       Under Cc, specify the other e-mail addresses to which the e-mail is to be sent.
These addresses are visible to the receiver.
○       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.
○       Enter the Subject of the e-mail message.
○       Specify whether you want to encode the content of the e-mail message. You have the following options:
■       None
■       Base64 (default value)
■       quoted-printable
○       If you have selected XIPAYLOAD as the message protocol and you want to forward XI attachments in the e-mail attachments, select Keep Attachments.
You use the PayloadSwapBean module to swap the application payload with one of the attachments.
See: PayloadSwapBean
*Pls: Reward points if helpful*
Regards,
Jyoti
Edited by: Jyoti Acharya on Dec 27, 2007 1:23 PM

Similar Messages

  • Configuring Receiver mail adapter with dynamic email addresses

    Hi,
    I'm a newbie to XI and I have problems in configuring the Receiver mail adapter with the "Use Mail package" option selected. I am trying pickup a file (using file adapter on Sender side, picks up a simple XML file) and after mapping in XI, send the message as an email message to dynamic email addresses.
    Everything works fine if I did not select the "Use Mail Package". But when I choose that option it errors out. I followed this blog posted on SDN -
    /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address
    The following XML message is my source
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/Somenamespace">
       <ns0:Message1>
          <ns1:studentlisttest xmlns:ns1="urn:karthiksender_to_karthikreceiver">
             <Student>
                <studentid>1</studentid>
                <lastname>Studentlastname</lastname>
                <firstname>Studentfirstname</firstname>
             </Student>
             <Mail>
                <From>[email protected]</From>
                <To>[email protected]</To>
                <Subject>Test mail adapter</Subject>
             </Mail>
          </ns1:studentlisttest>
       </ns0:Message1>
    </ns0:Messages>
    What I want to accomplish is, I have a simple message mapping where the Studentdetails are mapped to, lets say Customer details. For convenience lets keep it simple, StudentId --> Customerid, (student)Firstname --> (customer)Firstname, (Student)Lastname --> (customer)Lastname
    I would like to get the Customer details as an XML attachment or in the body of an email with from, to and subject corresponding to that specified in the <Mail> node.
    I followed the instructions posted on the blog and it works fine if I don't map the studentdetails to customerdetails. I did multimapping, with one source message (the xml file I posted above) and two target messages (customerdetails and Mail, which is the external definition posted on the blog). I beleive I'm missing something here. Could somebody please guide me through this?
    Thanks
    Karthik

    hi,
    I still have not found the solution for this problem. Michal, your blog works fine when my source message has got only the mail details. As per your advice, I tried modified the structure of the xsd file as follows
    <xs:schema targetNamespace="http://sap.com/xi/XI/Mail/30"
      xmlns:xi="http://sap.com/xi/XI/Mail/30"
      xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <!--
    Mail
      -->
      <xs:element name="Mail">
        <xs:annotation>
          <xs:documentation>Mail package for XI - Mail Adapter</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Subject" type="xs:string" minOccurs="0"/>
            <xs:element name="From" type="xs:string" minOccurs="0"/>
            <xs:element name="To" type="xs:string" minOccurs="0"/>
            <xs:element name="Reply_To" type="xs:string" minOccurs="0"/>
            <xs:element name="Content_Type" type="xs:string" minOccurs="0"/>
            <xs:element name="Date" type="xs:dateTime" minOccurs="0"/>
            <xs:element name="Message_ID" type="xs:string" minOccurs="0"/>
            <xs:element name="X_Mailer" type="xs:string" minOccurs="0"/>
            <xs:element name="Content" minOccurs="0">
              <xs:annotation>
                <xs:documentation>any type</xs:documentation>
              </xs:annotation>
            </xs:element>
          </xs:sequence>
          <xs:attribute name="encoding" type="xs:string"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="MailReceipt">
        <xs:annotation>
          <xs:documentation>Mail Receipt for XI - Mail Adaper</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Server" type="xs:string"/>
            <xs:element name="Format" type="xs:string"/>
            <xs:element name="UseMailPackage" type="xs:boolean"/>
            <xs:element name="Encoding" type="xs:string"/>
            <xs:element name="Subject" type="xs:string" minOccurs="0"/>
            <xs:element name="From" type="xs:dateTime" minOccurs="0"/>
            <xs:element name="To" type="xs:string" minOccurs="0"/>
            <xs:element name="Date" type="xs:dateTime" minOccurs="0"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="CustomerlistExternal">
        <xs:annotation>
          <xs:documentation>Customer List</xs:documentation>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:element name="Customername" type="xs:string"/>
            <xs:element name="Customerid" type="xs:string"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:schema>
    My source message will be something like
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
       <ns0:Message1>
          <ns1:studentlisttest xmlns:ns1="urn:karthiksender_to_karthikreceiver">
             <Student>
                <studentid>1</studentid>
                <lastname>abclname</lastname>
                <firstname>abcfname</firstname>
             </Student>
             <Mail>
                <From>[email protected]</From>
                <To>[email protected]</To>
                <Subject>Testing Mail adapter</Subject>
             </Mail>
          </ns1:studentlisttest>
       </ns0:Message1>
    </ns0:Messages>
    I have mapped the <student></student> information to customerlist, with customerid --> studentid and customername --> firstname or lastname (for symplicity). This was a multimapping with one source and two target messages. My test mapping output is
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
         <ns0:Message1>
              <ns2:Mail xmlns:ns2="http://sap.com/xi/XI/Mail/30">
                   <Subject>Testing Mail adapter</Subject>
                   <From>[email protected]</From>
                   <To>[email protected]</To>
              </ns2:Mail>
         </ns0:Message1>
         <ns0:Message2>
              <ns2:CustomerlistExternal xmlns:ns2="http://sap.com/xi/XI/Mail/30">
                   <Customername>abclname</Customername>
                   <Customerid>1</Customerid>
              </ns2:CustomerlistExternal>
         </ns0:Message2>
    </ns0:Messages>
    So how would I get this part of the <CustomerlistExternal></CustomerlistExternal> part of the message as an attachment to the mail address specified in the <ns2:Mail></ns2:Mail> tags.
    I'm definitely not understanding it right and am missing something. Could you give me step by step instructions to acheive this. I apologize for the trouble..this would be of great help to me.
    Thanks
    Karthik

  • Receiver mail adapter configuration for e-mail attachments

    Hi ,
    I need to send two files from sender file adapter to receiver mail adapter as e mail attachment.
    I want same attachment name in email as on sender side on FTP location.
    This is by pass scenario no object created in ESR.Please suggest how to handle this.
    For example if file name test.txt is send by file adapter then on mail  attachment name should be test.txt
    Thanks
    Mohit
    Edited by: Mohit Verma on Feb 10, 2012 4:18 PM

    Hi Mohit,
    Follow this blog for the ID configuration:
    http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/4383
    Create Receiver Determination and Interface Determination as described, and add a sender file CC and receiver mail CC according to your needs, plus sender and receiver agreements.
    In order to maintain the original file names, use a simple adapter module with the code mentioned here:
    http://forums.sdn.sap.com/thread.jspa?threadID=2122711&start=14
    Hope this helps,
    Greg

  • Receiver Mail Adapter configuration Error???

    Hi,
    i've created a Mail Adapter with the following configuration:
    Adaptertype: Mail
    Receiver
    Transport-Protocol: SMTP
    Message-Protocol: XIPAYLOAD
    Adapter-Engine: Integration-Engine
    I set From and To Fields to a valid address. When i start a test the message is passing the integration engine and an error occurs within the mail-adapter:
    Mail: Configuration error: Channel 7a15b118b96b392bbc9be5922f55b7d0is not configured for XIMailAdapter
    Mail: call failed; com.sap.aii.af.ra.ms.api.RecoverableException: Error: invalid XIMailAdapter channel 7a15b118b96b392bbc9be5922f55b7d0
    How can this happen?
    regards
    ms

    Hi,
    Reffer these BLOGS
    /people/michal.krawczyk2/blog/2005/11/23/xi-html-e-mails-from-the-receiver-mail-adapter
    /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address
    /people/michal.krawczyk2/blog/2005/12/18/xi-sender-mail-adapter--payloadswapbean--step-by-step
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1685 [original link is broken] [original link is broken] [original link is broken]
    /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure
    http://help.sap.com/saphelp_nw04/helpdata/en/3c/b4a6490a08cd41a8c91759c3d2f401/content.htm
    <u><b>Target Structure:::::</b></u>
    - <xs:schema targetNamespace="http://sap.com/xi/XI/Mail/30"
    xmlns:xi="http://sap.com/xi/XI/Mail/30"
    xmlns:xs="http://www.w3.org/2001/XMLSchema">
    - <!--
    Mail
    -->
    - <xs:element name="Mail">
    - <xs:annotation>
    <xs:documentation>Mail package for XI - Mail Adapter</xs:documentation>
    </xs:annotation>
    - <xs:complexType>
    - <xs:sequence>
    <xs:element name="Subject" type="xs:string" minOccurs="0" />
    <xs:element name="From" type="xs:string" minOccurs="0" />
    <xs:element name="To" type="xs:string" minOccurs="0" />
    <xs:element name="Reply_To" type="xs:string" minOccurs="0" />
    <xs:element name="Content_Type" type="xs:string" minOccurs="0" />
    <xs:element name="Date" type="xs:dateTime" minOccurs="0" />
    <xs:element name="Message_ID" type="xs:string" minOccurs="0" />
    <xs:element name="X_Mailer" type="xs:string" minOccurs="0" />
    - <xs:element name="Content" minOccurs="0">
    - <xs:annotation>
    <xs:documentation>any type</xs:documentation>
    </xs:annotation>
    </xs:element>
    </xs:sequence>
    <xs:attribute name="encoding" type="xs:string" />
    </xs:complexType>
    </xs:element>
    - <xs:element name="MailReceipt">
    - <xs:annotation>
    <xs:documentation>Mail Receipt for XI - Mail Adaper</xs:documentation>
    </xs:annotation>
    - <xs:complexType>
    - <xs:sequence>
    <xs:element name="Server" type="xs:string" />
    <xs:element name="Format" type="xs:string" />
    <xs:element name="UseMailPackage" type="xs:boolean" />
    <xs:element name="Encoding" type="xs:string" />
    <xs:element name="Subject" type="xs:string" minOccurs="0" />
    <xs:element name="From" type="xs:dateTime" minOccurs="0" />
    <xs:element name="To" type="xs:string" minOccurs="0" />
    <xs:element name="Date" type="xs:dateTime" minOccurs="0" />
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    </xs:schema>
    Regards
    Seshagiri

  • Mails not getting sent from Receiver Mail Channel

    Hi ALL
    I have a File to mail scenario , I see chakred flag in SXMB_MONI ..but mail are not getting triggred from the Receiver mail adapter..
    I gave the URL like this smtp://sxd123.abc.com
    and the respective E-mail ID's
    I dont see any message in the communication channel monitering also ..wht could be the reson.. ?
    Thanks
    Souz

    Hi Dominic,
    Since you are not seeing any entry in the communication channel (receiver), I think there is a problem with your configuration. Check whether you have used the correct channel (of type MAIL) in the receiver agreement.
    Regards
    Suraj

  • Receiver Mail Adapter with external Email-Provider

    Hi everyone,
    I have implemendet an Scenario with a receiver Mail Adapter. With using the SAP-Mail-Server it works fine.
    Now I want to use an external Email Provider like GMX or yahoo. But the Parameter e.g. smtp://mail.gmx.net does not work.
    Is this generally with an external Email Provider possible?
    Thanks in advice
    Christoph

    Hi,
    of course it is, but:
    your XI has to see the external provider = opened ports
    Regards,
    michal

  • IPad will not receive mail with my new email address

    I changed my email address and provider 4 days ago and now my iPad 2 will not receive mail.

    Hi bethfost,
    This article provides basic troubleshooting step that can help you resolve the issue receiving emails on your iPad after switching to the new email service provider.
    Get help with Mail on iPhone, iPad, and iPod touch - Apple Support
    So long,
    -Jason

  • Receiving Mail using a .mac email account.

    My .mac mailbox can no longer receive mail, it is received by the icloud box. In Icloud I have the imac, icloud and me accounts with the mac address greyed out, Since .me is no longer  how do I remove this address. In the apple Mail account box, my mac box has a tilde mark.When trying to get my mail, I constantly get a window popping up that ask for my password to use my .mac address box. what is going on? Am I the only one with this problem? am I going to have to change my address from .mac to .icloud?
    oldgranddad

    Michael,
    I think, but have not confirmed, that you would only see this Edit Email Aliases button when the Account Type is .mac in the preferences, and thus only if using Mail 2.0.
    I have not reconstructed when Mail 2.0 recognized my one .mac alias. Formerly, in Mail 1.3, I "piggybacked" the alias on one of my POP accounts, to allow sending.
    More info, please, including your reasons for setting the account up as IMAP versus .mac -- this was once recommended as a way to send from alias addresses as well, but no longer needed for that purpose.
    Ernie

  • Why Can't I receive mail in my icloud email address?

    I am not able to receive messages to my icloud email address, what's going on please?

    If this is happening on your iOS device, you might try deleting and recreating the account by going to Settings>iCloud, unchecking Mail, then checking Mail again.  Or, on a Mac, by going to System Preferences>iCloud, unchecking Mail, restarting your Mac, then going back and checking Mail again.

  • Receiving fibre channel activity log email when unplugging usb flash drive

    I found this to be very interesting.... I get the email from the log of the machine I am on.... this happens EVERY time I unplug my SanDisk CRUZER GATOR 8GB Flash Drive. I have a couple other non-sandisk drives and it doesnt seem to cause the same thing.
    this really doesnt effect our xsan or anything, but its annoying and it worries me that it could screw something up potentially.....so I am just wondering if anyone else is experiencing this?? or would know why this happens with just the sandisk...
    This is on a MacPro 2 x 3ghz dual core xeons, 4gb memory. xsan 1.4.2
    contents of the email:
    Fibre channel activity and failures:
    16:03:53: LUN 00:00:00:00:00:00:00:001 is no longer available
    16:03:53: LUN 00:00:00:00:00:00:00:000 is no longer avail...
    Message was edited by: RoyMan

    We received this alert also:
    Fibre channel activity and failures:
    14:27:05: LUN 00:00:00:00:00:00:00:001 is no longer available
    14:27:05: LUN 00:00:00:00:00:00:00:000 is no longer avail...
    And we were using a SanDisk 8GB Cruzer USB flash drive as well.
    Client is Mac Pro / Two 2.66GHz Dual-Core Intel Xeon / 2BG RAM / Xsan 1.4.2.

  • Receiver HTTP channel configuration

    Experts
    I am doing Proxy to HTTP scenario.
    My receiver had given the HTTP URL whcih looks this : http://10.1XX.X.XXX:6666/IntegrationServices/Test
    In my receiver HTTP communcation channel , Its asking for the following
    Target Host
    Service
    Path Prefix
    Can I fill in target host as : 10.1XX.X.XXX
    service number : 6666
    path prefix as : IntegrationServices/Test
    Can anyone please tell me how to fill the  CC parameters.
    I had referred lot of threads and blogs
    Thanks
    Faheem

    Hi Patrick
    I had checked the blog as per suraj recommendations. It doesn't help.
    Is there any pre settings has to be done for HTTP receiver configuration like defining RFC or any entries in ICM server
    Please throw some light on this. still i am getting the same error.
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIAdapter</SAP:Category>
      <SAP:Code area="PLAINHTTP_ADAPTER">ATTRIBUTE_CLIENT</SAP:Code>
      <SAP:P1>400</SAP:P1>
      <SAP:P2>ICM_HTTP_CONNECTION_FAILED</SAP:P2>
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>HTTP client code 400 reason ICM_HTTP_CONNECTION_FAILED</SAP:Stack>
      <SAP:Retry>A</SAP:Retry>
      </SAP:Error>
    Thanks
    Faheem

  • Receiving "Mail Delivery System" when Email is sent...why?

    Every time I send an email via my mac mail, I always get a Mail Delivery System email containing different content such as:  [Return Code 554] sid: d61F1m00P408TaZ01   or    [Return Code 550] sid: d61F1m00P408TaZ01.   It was also brought to my attention that those receiving my emails are getting them but they are also getting an extra email with a crazy unknown link.   Help!  How do I correct this?  I need this email for my start-up.  thanks...

    Hi
    No, ive not changed anything, ill include some of the error reports:
    The mail system
    <[email protected]>: host mx.bt.lon5.cpcloud.co.uk[65.20.0.49] said:
    522 IP FOUND IN DNSRBL (please check for IP address listing on common DNS
    RBL services) (in reply to MAIL FROM command)
    Reporting-MTA: dns; s3.trafficplanethosting.com
    X-Postfix-Queue-ID: A04751B4A808
    X-Postfix-Sender: rfc822; info@...
    Arrival-Date: Thu, 25 Sep 2014 07:47:54 -0500 (CDT)
    Final-Recipient: rfc822;
    Original-Recipient:
    Action: failed
    Status: 5.0.0
    Remote-MTA: dns; mx.bt.lon5.cpcloud.co.uk
    Diagnostic-Code: smtp; 522 IP FOUND IN DNSRBL (please check for IP address
    listing on common DNS RBL services)
    this message was sent to my own email address and did arrive even though it says it didnt:
    The mail system
    <[email protected]>: host mta5.am0.yahoodns.net[98.138.112.35] said: 553
    5.7.1 [BL21] Connections will not be accepted from 208.100.3.208, because
    the ip is in Spamhaus's list; see http://postmaster.yahoo.com/550-bl23.html
    (in reply to MAIL FROM command)
    Reporting-MTA: dns; s3.trafficplanethosting.com
    X-Postfix-Queue-ID: CB7EA1B4A09D
    X-Postfix-Sender: rfc822; [email protected]
    Arrival-Date: Thu, 25 Sep 2014 04:53:02 -0500 (CDT)
    Final-Recipient: rfc822; [email protected]
    Action: failed
    Status: 5.7.1
    Remote-MTA: dns; mta5.am0.yahoodns.net
    Diagnostic-Code: smtp; 553 5.7.1 [BL21] Connections will not be accepted from
    208.100.3.208, because the ip is in Spamhaus's list; see
    http://postmaster.yahoo.com/550-bl23.html
    thanks

  • I dont receive mail on my apple email id

    I forgot my security questions, and when I click on the option to receive the reset password instructions to my apple email id, I dont get any mail at all. What to do?

    If the email doesn't arrive within a few hours and didn't get caught in a spam filter, click here, phone Apple, and ask to speak with the Account Security team.
    (79487)

  • Attached file in receiver mail scenario and ConvertCRLFfromToLF

    Hi,
    I have a problem attaching a text file in a receiver mail channel.
    I use mail package, and I've created a UDF to create field content with:
    for (int j=0;j<a.length;j++)
      b = b + a[j] + "\n"  ;
    result.addValue(b);
    In my receiver CC, I have configurated:
    SAP XI Sample/ConvertCRLFfromToLF
    mode --> LFtoCRLF
    But when I open file attached by mail, it has only one line and line feed it's not correct.
    How to insert correctly CR LF ?
    Thanks,
    cARME

    I need CRLF at the end of every line in text file (windows end line).
    I have tried
    1) inserting \r\n t in the UDF and no module in CC. With this I see 0A 0A at the end of every line (it would  be 0D 0)
    2) inserting \n in the UDF and use module in CC to convert LF into CRLF. With this I see 0A at the end of every line.
    How to do it?
    Thanks,
    Carme

  • Accessing receiver communication channel parameters in mapping

    Hi,
    I have an XI sender to HTTP receiver scenario with mapping to set the value of the target URL, which is set as an Adapter Specific Message Attribute (TargetURL).
    The mapping is responsible for adding hashed authentication credentials to the end of the URL string.
    Ideally I'd like to be able to read the values of the host, port and path from the receiver communication channel configuration than hardcode these in the mapping class.
    Does anyone know whether it is possible to read receiver communication channel values within mapping?
    I could store the full URL string in the communication channel but this would not be secure hence the preference for doing this in mapping.
    Thanks,
    Alan

    try using Dynamic confiuration
    please check HTTP rec doc: http://help.sap.com/saphelp_nw2004s/helpdata/en/43/64dbb0af9f30b4e10000000a11466f/content.htm
    ○       URL: TargetURL
    ○       HTTP Destination: HTTPDest

Maybe you are looking for

  • Inconsistant overlay issues in same project - urgent help needed please!

    Hopefully this has not been asked. I searched and found nothing. The issue is that using overlays works great for two of the three menus in my project, but the third does not display properly when viewing a finished DVD or the TS folder. It looks per

  • Regarding MOSD 454811.1 ( Upgrading OracleAS 10g Forms and Reports in Oracl

    I Installed R12.1.1 and now upgrading it to 12.1.3. I am following document 1080973.1. As per MOSD 1080973.1, We need to upgrade Upgrading to the Latest OracleAS 10g 10.1.3.x Patch Set in Oracle E-Business Suite Release 12. Currently Version is 10.1.

  • Need some help styling datagrid...

    Hi, I have added a datagrid to my flex application and I need to give it a specific style but I can't get it to work. I need to remove the rollover color of the datagrid column headers. I've trawled through the flex forumns and website but so far I'v

  • SAP router certificate

    Hi Gurus; I want to re-generate my SAp certificate . Please elloaborate the process to follow. Thanks and regards Tushar Pathak

  • CS4 update to 4.2 - problems remain

    I am very disappointed that the latest update does not fix the Multicam windows colour error when running Premiere with Matrox RT.X2. The boarders on the multicam boxes remain green, whether playing or recording, rather than turning red when recordin