How can we change the “from email address” for Monetization event notifications ?

The "from email address" for all the Monetization event notifications is noreply@apigee.com, by default. How can we change "from email address" to any other email address as per the end user's preference ?

Solved Solved
1 5 303
1 ACCEPTED SOLUTION

Not applicable

We can change the “from email address” as follows.

1. Private cloud customers can use below API. Update the Organization Properties associated with email using the below command:

curl -X PUT -u userid -H "Content-Type: application/xml"  -d '<Organization type="paid" name="<org-name>">

<DisplayName><org-name></DisplayName>
    <Properties>
        <Property name="features.isMonetizationEnabled">true</Property>
        <Property name="MINT_NOTIFICATION_FROM_EMAIL_ALIAS">No Reply</Property>
        <Property name="MINT_NOTIFICATION_FROM_EMAIL_ADDRESS"><email-address></Property> 
       </Properties>
</Organization>' https://<management-server>:8080/v1/o/org-name

Note: - Replace <org-name> and <email-address> with the actual values as per your requirements

- Super admin can only change the organization property.

2. Regular Cloud customers file Support request and the support team will do below scenarios:

- Update Organization property with customer email address.

- Verify email setup in AWS SMTP Configuration otherwise emails will be blocked.

View solution in original post

5 REPLIES 5

Hi @AMAR DEVEGOWDAIf you are using Apigee in the cloud I do not think you yourself can do that change. If I remember correctly that config happens via config file . And only Apigee support can access and modify those files. I think you should try to raise a support ticket for this.

Dear @AMAR DEVEGOWDA ,

As per documentation here ,

Email reply address configuration: For monetization email notifications that are sent to companies and developers, a default noreply@apigee.com address is configured. Contact Apigee Support to configure a custom reply name and address for your organization.

Cheers,

Anil Sagar

Sarthak and Anil,

Thanks for your responses.

Not applicable

We can change the “from email address” as follows.

1. Private cloud customers can use below API. Update the Organization Properties associated with email using the below command:

curl -X PUT -u userid -H "Content-Type: application/xml"  -d '<Organization type="paid" name="<org-name>">

<DisplayName><org-name></DisplayName>
    <Properties>
        <Property name="features.isMonetizationEnabled">true</Property>
        <Property name="MINT_NOTIFICATION_FROM_EMAIL_ALIAS">No Reply</Property>
        <Property name="MINT_NOTIFICATION_FROM_EMAIL_ADDRESS"><email-address></Property> 
       </Properties>
</Organization>' https://<management-server>:8080/v1/o/org-name

Note: - Replace <org-name> and <email-address> with the actual values as per your requirements

- Super admin can only change the organization property.

2. Regular Cloud customers file Support request and the support team will do below scenarios:

- Update Organization property with customer email address.

- Verify email setup in AWS SMTP Configuration otherwise emails will be blocked.

Hi Sravan,

Thanks for your help. It worked for me.

Regards, Amar