Skip to content
#

attachment

Here are 122 public repositories matching this topic...

PHPMailer
PhilippGrashoff
PhilippGrashoff commented Jan 22, 2020

Hi there,
after spending quite some time figuring why Email sending with a certain smtp server does not work, I found its an SSL issue.

Most widely on the web the found solution is to unset some ssl checks:

$mail->SMTPOptions = array(
    'ssl' => array(
        'verify_peer' => false,
        'verify_peer_name' => false,
        'allow_self_signed' => true
    )
);

However

coop
coop commented Oct 29, 2019

The documentation states that it's possible to change the filename with the filename function:

It may be undesirable to retain original filenames (eg, it may contain personally identifiable information, vulgarity, vulnerabilities with Unicode characters, etc).

You may specify the destination filename for uploaded versions through your definition module.

For our use case we want to re

metaperl
metaperl commented Jan 25, 2018

hello,

The documentation for this library does not show any way to enable logging.

Currently, email is not being delivered and I have no idea why - the ability to enable logging would be of great use.

Also the docs do not indicate the return value of methods, so I have no idea how to see if each method call is working.

My usage of this module is very minimal. All of it is shown [here

austenc
austenc commented Mar 8, 2018

Hey @czim I'm interested in using this package instead of Stapler, but we already use Stapler (via laravel-stapler) in our project. I saw the list of differences in the readme, but was wondering if there was a more robust migration guide?

If not, is there anything else I should be aware of when attempting the transition? Is the rest of the API mostly the same as stapler's?

This looks far m

Improve this page

Add a description, image, and links to the attachment topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the attachment topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.