Send multiple documents to multiple mail Id's - email

I have to send multiple documents to multiple mail id's on a single click. How do I do that? I don't know how that begin. Please help me find a solution

Related

How to send personalised emails with dynamic attachements to a mailing list?

I have a mailing list on SendGrid that needs to be sent information from a database. This list is quite large and it would take days to manually transfer all the data and make 5000 separate PDF's from our excel spreadsheet.
Additionally, each email sent would need to have the specific PDF for that specific person in the mailing list. Each PDF would contain different information depending on the person's details.
How do I go about personalising each email from a generic template (e.g. Hi ____ etc.) and send dynamic attachments to each of the people on the mailing list that corresponds to their data?
I have tried to import data from excel into PDF's but am having trouble with this.
I have a relatively simple knowledge of coding and am not sure how I would go about making the email personalised and be able to send a dynamic attachment for each recipient.

Automatically delete spam messages

I have a problem with my hotmail account. For some reason I receive a lot of messages every day which have a link lead to 3-4 sites so that they will track who opens the link. They also have unsubscribe links which go to a similar URL but it is not actually unsubscribe me. I receive 20-30 messages every day. They go to the junk folder but I can to keep this folder clean.
What I was looking for is a way to automatically delete these messages by using some kind of filtering but they use different emails every time that they send the messages and the only way to automatically delete these messages is by checking the contents of the message and find the specific URL pattern that they use in order to track the users who actually see the messages that they send.
I tried to use the hotmail rules or the thunderbird message filters but I have not found a way to find the messages which contain a specific link inside the body of the message so that the application will automatically delete them.
Is there a tool or mail client which will allow me to filter and delete these messages?
Thanks in advance,
Aristotelis

Google Drive Daily Email Limit?

We have a few Google Forms as part of my work. I am using the Form Emailer script so that, when someone fills out the quiz, that person and also a person here in our office will receive an e-mail displaying a summary of their responses.
We just had a meeting and so many more people are filling them out right now. My question is, what is the daily e-mail limit when sending in this way, a custom form script?
Keeping in mind that two e-mails are being sent with each form completion, one to our person and one to the person that filled it out.
I tried to research this but I am getting conflicting information--some sites list the limit using Gmail, for example, but I don't think this is the same thing?
Any help is appreciated, thanks!
The limit will depend on the account type that is sending the emails. Since you are sending a message to a respondent (1) and a monitor (1), each of your mails will count as 2 recipients.
Your daily limit will be 100 or 1500 per day.
A script can test your remaining limit by calling MailApp.getRemainingDailyQuota().
Ref Quota Limits tab.

Insert data into a google spreadsheet via a link

I'm looking for a way for users to send data from an email sent to them in a single click using google scripts.
Basically, I have a spreadsheet with a list of emails, and I want to send an email to all of them (I've already set up a sort of mail merge script).
The tricky part is that I want the emails to contain links unique to each person. If they click one of the links, I want data to be entered into the spreadsheet in the row corresponding to their email address.
Is this at all possible?
I posted this response to basically the same question a few weeks ago. It uses the technique described by Henrique in the above comment to use an item from the individual row as a parameter in the webapp url.

SendGrid SMTP API: Multiple e-mails to the same recipient

I have a web app that uses SendGrid's X-SMTP functionality to construct a single e-mail that is then merged and forwarded to a list of recipients specified in the X-SMTPAPI header.
Documentation here: http://sendgrid.com/docs/API_Reference/SMTP_API/
I am using MVC.NET and sending the e-mail using a MailMessage object via smtp.sendgrid.net
Everything seems to be working fine as far as merging values from the header and sending out the e-mails is concerned.
However I have noticed that if I specify the same e-mail address multiple times in the "to" list, only a single e-mail is sent out (or at least I just receive the one).
Has anybody had the same experience? Anybody know of a way to get around this issue?
Thanks in advance!
SendGrid's servers will de-dupe the To array. The only way to get around this is to split duplicates into separate SMTP messages, or to change the addresses so they are not duplicates (you could use plus addressing, e.g. person#example.com and person+foo#example.com).