Questions tagged [mail-sender]

100 questions
0
votes
1 answer

Office 2010 VBA - pass SenderEmailAddress to Excel workbook and run Excel macro to send email

I've been asking people that are more familiar with VBA than I with not the kind of luck that I am hoping for. Here's what I need: incoming email with "Stats1", "Stats2", "Stats3" (etc.) in the subject line rule is triggered, capture the sender's…
TheOrion
  • 1
  • 3
0
votes
1 answer

Why can't I call methods on my Mail::Sender object?

I have this simple part of the program that should send an email to a specified user. But it has an error that says "Can't call method "MailMsg" on an undefined value" if ($sender->MailMsg({smtp => 'mail.myISP.com', from =>…
Suezy
  • 1,071
  • 4
  • 13
  • 19
0
votes
1 answer

codedom add reference

I want make a mail sender generator . but I have problem with codedom reference . my result is : "The type or namespace name 'Mail' does not exist in the namespace 'System.Net' (are you missing an assembly reference?)" I cant add system.net.mail…
xwpedram
  • 467
  • 1
  • 8
  • 20
-1
votes
2 answers

How to extract the Email address of a downloaded File

I am trying to find a plugin or a browser attachment which would allow me to find out the email address of a file which has been downloaded!!! I have searched the web vigorously yet there hasn't been any luck! To expand on my thought i would like…
Vikram Nair
  • 13
  • 1
  • 3
-1
votes
1 answer

Laravel Mail::send() seems to be not working

i used $email = $dist->email; Mail::send('emails.welcome', $input1, function ($message) use($input1,$email) { $message->from('myemail@gmail.com', "Messenger"); $message->subject("New User Registered"); $message->to($email); }); and…
-1
votes
1 answer

PHP mail generator - wrong message structure

I have a problem with php mail generator. I don`t understand my code put $visitor_email in message... Can you help me? id = $_POST['ID']; $tt = $_POST['TT']; $visitor_email = $_POST['email']; $message = $_POST['message']; //Validate…
user9557556
  • 43
  • 1
  • 5
-1
votes
1 answer

Multithread with several email account sending to a list of recipients?

My goal is speed up process of send emails, because send only with 1 email account will delay a long time when have a big list of recipients. Then i have a txt file with several email account each line is equal to…
user8643548
-1
votes
1 answer

Send data per mail

I'm working on an app but I'm missing a small part. I prepared a View so that you can insert data into UITextField and I can then send this information via email. I tried many ways. #import @interface RMAcpu : UIViewController…
-2
votes
1 answer

mass mailing with php

I have a database containing more than 2000 contacts, I want to use the mass mailing, but I do not know how to do it, I used this code but I think it is not useful because the number of mails is important and mail() can't work for mass…
-5
votes
1 answer

Verify if email sender has permission to send to a certain address

I am forced to implement a sender policy in qmail. I have a file describing the policies: User1@domain1.com:*@domain1.com,x@Domain2.COM,y@DOMAIN.com user2@domain1.com:*@* USER3@domain1.com: This file describes the following…
1 2 3 4 5 6
7