Mail send by xpages form change group by user of group in sendTo field - email

I developed an application that has a form where this form once completed is sent by e-mail as the list of selected group or user in the container. The problem is that when I choose to send e-mail to a group and click on the submit button, check the box to the e-mail client for lotus note that does not appear the group name but the name of all users in that group I selected. Anyone know why this happens? That is, when I choose a group and sending e-mail, Lotus internally changes the name of the group by the name of all users of this group.

You may try adding field $ExpandGroups with a value of 0 to the document. See this for detailed information on this field.

Is the group a personal group? In other words, is it in the user's local address book? If so, it has to expand it to the members because the router won't be able to find the group name in the Domino Directory.

Related

Email delivery logs for members of Group

I currently do not have admin access to G Suite, but I am interested in knowing whether Email Log Search would allow me to track email delivery for an email sent to a Groups address. The email was forwarded to a set of recipients, but one is claiming not to be receiving it.
All references I've found state that you should put the Groups address in the TO field, but would that return information about delivery status to individual recipients in the group? If the Groups address were to be set as the FROM, would I be able to track delivery to group members?
I have also seen that there's a status check for group members in the group itself, but that seems to be a general tag and cannot be narrowed down to a specific email.
Thank you in advance.
When an email is sent to a group email address, the email will be forwarded to all the individual emails that are members of that group. So if you set the groups email on the TO field it will not return the delivery status to the individual recipients.
Note that if you are the domain primary admin it is also possible to see the individual addresses by clicking the Expand Results to All Recipients button.
But if you set the group email as the FROM, it will show the forwarded emails to the individual member emails.
For more information on Email Log Search, please refer to https://support.google.com/a/answer/2618874

Unable to assign WIT alerts to specific users without who don't have admin rights

A team member without admin rights needs to be notified when WITs are assigned or changed. The login emails for our system is not the same as the work email and assigned to me is the only default option.
Changing the delivery settings and using a custom email doesn't trickle down to the WIT alerts, but works for the rest.
The assigned to field shows ##MyDisplayName## OR [Member] and not sure how to make that reflect the users it needs to go to.
Emails being sent to the wrong addresses.
Select the Custom email address option in the Deliver to drop-down list, then add the mailbox you want to receive the notification in Address field, so that even if the mailbox is not in your organization, the added mailbox will also receive the notification.

How can i add contacts in delivery options field for voting button in outlook using powershell?

I want to select 'have replies sent to' checkbox and add certain list of people to send them voting button response. How to do this using powershell script?
Looks like you are interested in the ReplyRecipients property which returns a Recipients collection that represents all the reply recipient objects for the Outlook item.

How to get all the email addresses that belongs to the sender's group, in outlook 2010, using powershell scripts

I would like to get all the email addresses that belongs to the sender's group, in outlook 2010 professional, using PowerShell.
For example, person A sends me an e-mail, and A belongs to group X. So I would like to use PowerShell to get all the email addresses that belongs to group X.
I was reading outlook Api documentations but found nothing related to that. Any help would be really appreciated.
Thanks,
Ruijie
Do you mean the "Member of" tab in the Exchange user properties dialog? Retrieve AddressEntry object from MailItem.Sender, then use AddressEntry.GetExchnageUser().GetMemberOfList function (be prepared to handle null and/or errors). Loop through all items in the returned AddressEntries list.

display order items layout in email only for admin in magento

Whenever user place a new order in magento email will send. In this email contains order items with prices.
{{layout handle="sales_email_order_items" order=$order}}
But i need to send email to customer without order items and email to admin with order items.
So how to write condition to display this layout only for admin email.
thanks,
murali.
The order confirm e-mail is just send one time. If you configured your that the admin receives the order confirm e-mails to it's send to admin in CC.
That means that you can#t easily change the content of the e-mail for customer and admin because it's the same e-mail.
To achieve your goal you should write an own module which observes the place_order_after event and sends a seprarat e-mail to the admin e-mail-adress in which you show the products. In the standard template you would erase the part with the products.